Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
NEXT_DAY « Date Timezone « Oracle PL / SQL
Oracle PL / SQL
Date Timezone
NEXT_DAY
1.
The proper method to find the first Monday in a given month
2.
NEXT_DAY: the date of the day of the week following a particular date
3.
Finding the first Monday in the month of September
4.
NEXT_DAY('01-AUG-97','Monday'): Finding the first Monday in the month of August
5.
NEXT_DAY(SYSDATE,'Monday'): Finding the first Monday after the current date and time
6.
select next_day( date'2001-09-11', 'SUNDAY' )
7.
select next_day( date'2002-01-01', 'FRI' )