G
Guest
Hi,
I have a table where I keep information about events. All the events have
start date time and end date time.
I want to get all the events for a month. I tried the following but it
doesn't cover the whole month...
SELECT *
FROM Events
WHERE StartDate between '2/1/2007' AND '2/28/2007'
Whats will be the best way to get this data?
Thanks in advance.
I have a table where I keep information about events. All the events have
start date time and end date time.
I want to get all the events for a month. I tried the following but it
doesn't cover the whole month...
SELECT *
FROM Events
WHERE StartDate between '2/1/2007' AND '2/28/2007'
Whats will be the best way to get this data?
Thanks in advance.