I have an SQL Server table that has a column called statusdate that’s an ODBC date/time.
I need to create a SELECT query WHERE statusdate can return a range between 2 dates (a start date and an end date). I’ve been told to use DATEDIFF in my WHERE statement. Is this correct and what’s the syntax?
I have an SQL Server table that has a column called statusdate that’s an
Share
Why don’t you just do a
BETWEEN?: