Sorry for the lazy question. I want to know the SQL Server 2005 syntax for
SELECT *
FROM myTable
WHERE myDateTimeField > "4am this morning"
Thanks in advance for your help.
|
Sorry for the lazy question. I want to know the SQL Server 2005 syntax for
Thanks in advance for your help. |
||||
|
|
|
Use:
This:
...will return a DATETIME at midnight of the current day. So the outer DATEADD adds four hours to that date at midnight to give you a DATETIME at 4 AM this morning. Reference: |
|||
|
|
|
Try
|
|||
|
|
|
And just to be different, and arguably shorter/more readable than the other offerings:
Of course, you might not really want to hard-code 4AM, but if you do, this way is nice and obvious in conveying your intent. |
|||
|