I use SQL Server. I have a column of type datetime
in the following format:
2014-07-14 09:18:13.000
How can I write a select
statement so that it only selects the dates that are newer than a specific date and specific date + time?
EDIT SELECT * FROM mytable WHERE mydatefield > '2014-07-22'
the datetime column: 2014-07-22 11:44:08.000
I get the data. I should not get the data because it says bigger than.