Flash cards
Review the key moves
1/4
Core idea
What is the main idea behind MySQL TIME_FORMAT() Function?
Lesson checks
Practice each idea before moving on
Short Mimo-style checks built from this lesson's code, terms, and sequence.
1Quick choice
Which statement best captures the main point of this lesson?
2Fill blank
Complete the missing token from the example code.
___ TIME_FORMAT("19:30:10", "%H %i %s");3Order
Put the learning moves in the order that makes the concept easiest to apply.
The TIME_FORMAT() function formats a time by a specified format.
Definition and Usage
MySQL TIME_FORMAT() Function
Example
SELECT TIME_FORMAT("19:30:10", "%H %i %s");Definition and Usage
The TIME_FORMAT() function formats a time by a specified format.
Syntax
TIME_FORMAT(
time
,
format
)Parameter Values
| Parameter | Description |
|---|---|
| time | Required. The time to be formatted |
| format | Required. The format to use. Can be one or a combination of the following: Format Description %f Microseconds (000000 to 999999) %H Hour (00 to 23) %h Hour (00 to 12) %I Hour (00 to 12) %i Minutes (00 to 59) %p AM or PM %r Time in 12 hour AM or PM format (hh:mm:ss AM/PM) %S Seconds (00 to 59) %s Seconds (00 to 59) %T Time in 24 hour format (hh:mm:ss) |
| Format | Description |
| %f | Microseconds (000000 to 999999) |
| %H | Hour (00 to 23) |
| %h | Hour (00 to 12) |
| %I | Hour (00 to 12) |
| %i | Minutes (00 to 59) |
| %p | AM or PM |
| %r | Time in 12 hour AM or PM format (hh:mm:ss AM/PM) |
| %S | Seconds (00 to 59) |
| %s | Seconds (00 to 59) |
| %T | Time in 24 hour format (hh:mm:ss) |
| Format | Description |
|---|---|
| %f | Microseconds (000000 to 999999) |
| %H | Hour (00 to 23) |
| %h | Hour (00 to 12) |
| %I | Hour (00 to 12) |
| %i | Minutes (00 to 59) |
| %p | AM or PM |
| %r | Time in 12 hour AM or PM format (hh:mm:ss AM/PM) |
| %S | Seconds (00 to 59) |
| %s | Seconds (00 to 59) |
| %T | Time in 24 hour format (hh:mm:ss) |
Technical Details
| Works in: | From MySQL 4.0 |
|---|