Collections:
Writing Date and Time Literals in MySQL
How To Write Date and Time Literals in MySQL?
✍: FYIcenter.com
MySQL offers a number of formats for you to use to enter date and time literals:
The tutorial exercise below gives you some good examples:
SELECT DATE('1997-01-31') FROM DUAL;
1997-01-31
SELECT DATE('1997-01-31 09:26:50') FROM DUAL;
1997-01-31
SELECT TIME('1997-01-31 09:26:50') FROM DUAL;
09:26:50
SELECT DATE('1997/01/31 09^26^50') FROM DUAL;
1997-01-31
SELECT TIME('1997/01/31 09^26^50') FROM DUAL;
09:26:50
SELECT DATE('19970131') FROM DUAL;
1997-01-31
SELECT TIME('092650') FROM DUAL;
09:26:50
SELECT DATE(19970131) FROM DUAL; -- Crazy format
1997-01-31
SELECT TIME(092650) FROM DUAL; -- Crazy format
09:26:50
⇒ Entering Microseconds in SQL Statements in MySQL
⇐ What are Date and Time Data Types in MySQL
2017-12-26, 2301🔥, 0💬
Popular Posts:
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...