MySQL Programming Question: Download MySQL Programming PDF

How To Enter Microseconds in SQL Statements?

Tweet Share WhatsApp

Answer:

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


Download MySQL Programming PDF Read All 110 MySQL Programming Questions
Previous QuestionNext Question
How To Write Date and Time Literals?How To Convert Dates to Character Strings?