Collections:
DATEDIFF() - Calculating DATETIME Value Differences in SQL Server
How To Calculate DATETIME Value Differences Using the DATEDIFF() Function in SQL Server Transact-SQL?
✍: FYIcenter.com
If you want to calculate the difference between two date and time values, you can use the DATEDIFF() function in the following format:
DATEDIFF(datepart, startdate, enddate) returns INT: "startdate" - the start date "enddate" - the end date "datepart" - one of predefined date part names See other tutorials for the list of names
Note that SQL Server manual says DATEDIFF() returns the number of boundaries crossed by the specified part between two specified dates. This can be interpreted as truncating all parts smaller than the specified part on both input date and time values, then calculating the difference. The following tutorial exercise shows you some good DATEDIFF() usage examples:
-- Difference in days - truncating all parts -- smaller than day DECLARE @birth_date DATETIME; DECLARE @today_date DATETIME; SET @birth_date = '2000-02-29 16:10:00.000'; SET @today_date = '2000-03-02 18:30:00.000'; SELECT DATEDIFF(day, @birth_date, @today_date); GO 2 -- Difference in hours - truncating all parts -- smaller than hour DECLARE @birth_date DATETIME; DECLARE @today_date DATETIME; SET @birth_date = '2000-02-29 16:10:00.000'; SET @today_date = '2000-03-02 18:30:00.000'; SELECT DATEDIFF(hour, @birth_date, @today_date); GO 50
⇒ Calculating Age in Days, Hours and Minutes in SQL Server
⇐ DATEADD() Function Usage Examples in SQL Server
⇑ Date/Time Operations and Functions in SQL Server Transact-SQL
2017-02-20, 3575🔥, 0💬
Popular Posts:
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...