Using SQL, I want to return all records where the date is between 1st March and 31st June (for example), but the records should cover all years. Is there a simple way I can achieve this?
feedback
|
|
Here is what you would do if you are using PL/SQL or oracle SQL+
this will give you all the rows that have a date of June 21 regardless of the year. | |||
|
feedback
|
|
Use the date functions to get the Month and the Day of Month from the date field and use in the where clause. Depending on your DB, the function names may vary. But it will be in general like
| |||
|
feedback
|
|
For SQL Server use:
| |||
|
feedback
|