Dofactory.com
Dofactory.com
Earn income with your data and sql skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

SQL DATETIME Data Type

The DATETIME data type specifies a date and time with fractional seconds.

DATETIME supports dates from January 1, 1753, through December 31, 9999.

The default value is 1900-01-01 00:00:00. The time is based on 24-hour clock.

Example

#

A table with a DATETIME column.

CREATE TABLE DemoTable  
( 
  Id INT IDENTITY, 
  Customer VARCHAR(100) NOT NULL,
  ProductName VARCHAR(100) NOT NULL,
  OrderDateTime DATETIME
);
GO  

INSERT INTO DemoTable VALUES ('Harold Smith', 'Lays Chips', '2021-02-15 9:55:12');
INSERT INTO DemoTable VALUES ('Robert Johnson', 'Quaker Oats', '2021/11/08 8AM');
INSERT INTO DemoTable VALUES ('Janice Lopez', 'Oreo Cookies', '2021-05-14 13:12');
INSERT INTO DemoTable VALUES ('Kelly Wilson', 'Fritos', '2021-9-2');
INSERT INTO DemoTable VALUES ('Grace Taylor', 'Cheetos', NULL);
GO  

SELECT * FROM DemoTable;
GO

DROP TABLE DemoTable;
GO
Results:  5 records
Id Customer ProductName OrderDateTime
1 Harold Smith Lays Potato Chips 2021-02-15 09:55:00
2 Robert Johnson Quaker Oats 2021-11-08 08:00:00
3 Janice Lopez Oreo Cookies 2021-05-14 13:12:00
4 Kelly Wilson Fritos 2021-09-02 00:00:00
5 Grace Taylor Cheetos NULL

Notice how SQL Server accepts different input date and time formats.

These formats are converted to the internal format which is 'YYYY-MM-DD HH:MM:SS'.

More Examples

DATETIME with CAST DATETIME VALUE

ORDER
Id
OrderDate
OrderNumber
CustomerId
TotalAmount
CUSTOMER
Id
FirstName
LastName
City
Country
Phone
Problem: List all orders. Display the order dates as datetime.
SELECT OrderNumber, FirstName, LastName, 
       CAST(OrderDate AS DATETIME) AS [DateTime],
	   TotalAmount
  FROM [Order] O
  JOIN Customer C ON C.Id = O.CustomerId
Result:  830 records
OrderNumber FirstName LastName SmallDateTime TotalAmount
542378 Paul Henriot 2012-07-04 00:00:00.000 440.00
542379 Karin Josephs 2012-07-05 00:00:00.000 1863.40
542380 Mario Pontes 2012-07-08 00:00:00.000 1813.00
542381 Mary Saveley 2012-07-08 00:00:00.000 670.80
542382 Pascale Cartrain 2012-07-09 00:00:00.000 3730.00

DATETIME with OTHER DATE AND TIME TYPES

Problem: Display date values as different date and time types in SQL Server.
CREATE TABLE DemoTable  
( 
  MyDate DATE,
  MyTime TIME,
  MySmallDateTime SMALLDATETIME,
  MyDateTime DATETIME,
  MyDateTime2 DATETIME2,
  MyDateTimeOffset DATETIMEOFFSET
);
GO  

INSERT INTO DemoTable VALUES ('2021-10-22 13:54:19:55', '2021-10-22 13:54:19:55',
                              '2021-10-22 13:54:19:55', '2021-10-22 13:54:19:55',
                              '2021-10-22 13:54:19:55', '2021-10-22 13:54:19:55');  
GO  

SELECT * FROM DemoTable;
GO

DROP TABLE DemoTable;
GO
Result:  1 record
MyDate MyTime MySmallDateTime MyDateTime MyDateTime2 MyDateTimeOffset
2021-10-22 13:54:19.0550000 2021-10-22 13:54:00 2021-10-22 13:54:19.057 2021-10-22 13:54:19.0550000 2021-10-22 13:54:19.0550000 +00:00

You may also like



Last updated on Dec 21, 2023

Earn income with your data and sql skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.