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, 2316🔥, 0💬
Popular Posts:
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...