select *
from table
where date > '2010-07-20 03:21:52'
which I would expect to not give me any results... EXCEPT I'm getting a record with a datetime of 2010-07-20 03:21:52.577
how can I make the query ignore milliseconds?
which I would expect to not give me any results... EXCEPT I'm getting a record with a datetime of how can I make the query ignore milliseconds? |
||||
|
|
You just have to figure out the millisecond part of the date and subtract it out before comparison, like this:
|
|||
|
|
You'll have to trim milliseconds before comparison, which will be slow over many rows Do one of these to fix this:
|
|||
|
|
|
For this particular query, why make expensive function calls for each row when you could just ask for values starting at the next higher second:
|
|||
|
|
|
Try:
Or if your date is an actual datetime value:
The conversion to style 120 cuts off the milliseconds... |
||||
|
|
|
There's more than one way to do it:
or
one less function call, but you have to be beware of overflowing the max integer if the dates are too far apart. |
|||
|
|