I'm a relative noob so if this is the wrong group, please point me to the
right place...
I have a table that contains events, including a date (date/time field)
for that event. I'd like to construct a query that will return all events
that happened in a list of years.
Something along the lines of
select * from t_events where eventDate in (1999,2001,2006 )
Is there a way to do that?
TIA,
Bruce
right place...
I have a table that contains events, including a date (date/time field)
for that event. I'd like to construct a query that will return all events
that happened in a list of years.
Something along the lines of
select * from t_events where eventDate in (1999,2001,2006 )
Is there a way to do that?
TIA,
Bruce
Comment