DELETE from Table WHERE Date > GETDATE();
GETDATE() includes time. Instead of getting
2011-01-26 14:58:21.637
How can I get:
2011-01-26 00:00:00.000
GETDATE() includes time. Instead of getting
How can I get:
|
||||
|
Slight bias to SQL Server
Summary
SQL Server 2008 has
Edit: To add one day, compare to the day before "zero"
From cyberkiwi: An alternative that does not involve 2 functions is (the +1 can be in or ourside the brackets).
|
|||||||
|
|
|
It's database specific. You haven't specified what database engine you are using. e.g. in PostgreSQL you do cast(myvalue as date). |
|||||
|
|
|||||||
|
|
For SQL Server 2008, the best and index friendly way is
For prior SQL Server versions, date maths will work faster than a convert to varchar. Even converting to varchar can give you the wrong result, because of regional settings.
Note: it is unnecessary to wrap the |
|||||
|
|
|||
|
Here you have few solutions ;) http://www.bennadel.com/blog/122-Getting-Only-the-Date-Part-of-a-Date-Time-Stamp-in-SQL-Server.htm |
|||
|
>=rather than>, or you'll actually miss out on deleting records that are exactly 2011-01-26 00:00:00.000... – Matt Gibson Jan 26 '11 at 21:05