Skip to content
Advertisement

How can I compare time in SQL Server?

I’m trying to compare time in a datetime field in a SQL query, but I don’t know if it’s right. I don’t want to compare the date part, just the time part.

I’m doing this:

Is it correct?

I’m asking this because I need to know if 08:00:00 is less or greater than 07:30:00 and I don’t want to compare the date, just the time part.

Thanks!

Advertisement

Answer

Your compare will work, but it will be slow because the dates are converted to a string for each row. To efficiently compare two time parts, try:

Long explanation: a date in SQL server is stored as a floating point number. The digits before the decimal point represent the date. The digits after the decimal point represent the time.

So here’s an example date:

Let’s convert it to a float:

Now take the part after the comma character, i.e. the time:

Convert it back to a datetime:

The 1900-01-01 is just the “zero” date; you can display the time part with convert, specifying for example format 108, which is just the time:

Conversions between datetime and float are pretty fast, because they’re basically stored in the same way.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement