D
Daren Hawes
Hi,
I just have a question about filtering date fields by Month name.
For example
Data is
ID Date
---------------------
1 1/1/2005
2 2/2/2005
My problem query is
Select * from table where Date = 'January'
I have tried
Select * from table where Date = MonthName(Month(theDate)) = 'January'
but the above fails
Any ideas?
Thanks daren
I just have a question about filtering date fields by Month name.
For example
Data is
ID Date
---------------------
1 1/1/2005
2 2/2/2005
My problem query is
Select * from table where Date = 'January'
I have tried
Select * from table where Date = MonthName(Month(theDate)) = 'January'
but the above fails
Any ideas?
Thanks daren