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?

link|improve this question
By 'SQL' you mean 'SQL Server'? – Andriy M Jun 21 '11 at 7:28
feedback

3 Answers

up vote 0 down vote accepted

Here is what you would do if you are using PL/SQL or oracle SQL+

SELECT * FROM table
WHERE TO_CHAR(MONTH_COLUMN,'MM/DD') = '06/21'

this will give you all the rows that have a date of June 21 regardless of the year.

link|improve this answer
Great, this is what I needed and works in PostgresQL – Olmec Aug 9 '11 at 6:24
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

SELECT * FROM table 
   WHERE Month(dateField) = 6 
       AND (DayOfMonth(dateField) >= 1 AND DayOfMonth(dateField) <= 30)
link|improve this answer
feedback

For SQL Server use:

select * 
from table 
where month(dtgCol) between 3 and 6
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.