Collections:
TIME_FORMAT() - Formatting Time
How to convert a time into formatted string using the TIME_FORMAT() function?
✍: FYIcenter.com
TIME_FORMAT(time, format) is a MySQL built-in function that
converts a time into a formatted string.
For example:
SELECT TIME_FORMAT(NOW(3), '%H:%i:%s.%f'); -- +------------------------------------+ -- | TIME_FORMAT(NOW(3), '%H:%i:%s.%f') | -- +------------------------------------+ -- | 20:58:42.648000 | -- +------------------------------------+
Reference information of the TIME_FORMAT() function:
TIME_FORMAT(time, format): str Formats the time value according to the format string. Arguments, return value and availability: time: Required. The time value to be formatted. format: Required. The string with time format specifiers. str: Return value. The formatted time Available since MySQL 4. Time format specifiers: Specifier Description --------- ----------- %f Microseconds (000000..999999) %H Hour (00..23) %h Hour (01..12) %I Hour (01..12) %i Minutes, numeric (00..59) %k Hour (0..23) %l Hour (1..12) %p AM or PM %r Time, 12-hour (hh:mm:ss followed by AM or PM) %S Seconds (00..59) %s Seconds (00..59) %T Time, 24-hour (hh:mm:ss) %% A literal % character %x x, for any “x” not listed above
⇒ TIME_TO_SEC() - Converting Time to Seconds
⇐ TIMESTAMPDIFF() - Difference in Timestamp Component
2023-11-17, 1098🔥, 0💬
Popular Posts:
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...