Collections:
Entering Microseconds in SQL Statements in MySQL
How To Enter Microseconds in SQL Statements in MySQL?
✍: FYIcenter.com
If you want to enter microseconds in a SQL statements, you can enter them right after the time string as a 6-digit number delimited with '.'. '0' will be padded to right if not enough digits. Here are some good examples:
SELECT TIME('1997/01/31 09^26^50.123') FROM DUAL; 09:26:50.123000 SELECT TIME('1997/01/31 09^26^50.000123') FROM DUAL; 09:26:50.000123
⇒ Converting Dates to Character Strings in MySQL
⇐ Writing Date and Time Literals in MySQL
2017-12-26, 1609🔥, 0💬
Popular Posts:
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...