I have two date's:
1) 01/05/2009
2) 06/05/2009
How can I know if there's 5 days between them?
|
|
|
|
|
|
|
You can subtract two dates to get the difference in days between them (the unit for date columns in Oracle is 1 day). In your example, I assume date is spelled in DD/MM/YYYY format. So you could do this:
If the two dates are two columns in a table, then use table name instead of "dual" in query above. |
||||
|
|
|
First, get your dates into variables. Then you can use simple addition to determine if the required number of days have passed as Oracle treats addition and subtraction with dates as adding or subtracting days. For instance Date1, + 5 will equal the date plus 5 days. In PL/SQL your block may end up looking something like this:
|
||
|
|
|
|
First decide whether your date format is DD/MM/YYYY or MM/DD/YYYY |
||
|
|