How Can I Correctly Compare DATETIME and DATE Values in SQL Server?
Jan 04, 2025 pm 05:27 PMComparing Datetime with Date in SQL Server
When comparing a datetime value with only a date, the result may be unexpected. This is because the datetime data type includes both date and time components. For instance, if you have a user table with a DateCreated column of datetime type, the following query:
Select * from [User] U where U.DateCreated = '2014-02-07'
will not return any records, even though the user was created on 2014-02-07 at 12:30:47.220.
To accurately compare a datetime with only a date, use the following method:
Select * from [User] U where U.DateCreated >= '2014-02-07' and U.DateCreated < dateadd(day,1,'2014-02-07')
This query is SARGable, meaning it can use an index on the DateCreated column.
Why Not Use Functions?
It may be tempting to use functions like CONVERT to extract the date component from the datetime. However, this is not recommended. Using functions in the WHERE clause or join conditions:
- Removes the ability of the optimizer to use an index on the field
- Adds unnecessary calculations for each row of data
Avoiding BETWEEN
BETWEEN should also be avoided when dealing with date and time ranges. Use the following form instead:
WHERE col >= '20120101' AND col < '20120201'
This form is compatible with all data types and precisions, regardless of the time part.
The above is the detailed content of How Can I Correctly Compare DATETIME and DATE Values in SQL Server?. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Reduce the use of MySQL memory in Docker

How do you alter a table in MySQL using the ALTER TABLE statement?

How to solve the problem of mysql cannot open shared library

Run MySQl in Linux (with/without podman container with phpmyadmin)

What is SQLite? Comprehensive overview

Running multiple MySQL versions on MacOS: A step-by-step guide

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?

How do I configure SSL/TLS encryption for MySQL connections?
