Course
Simulator
More
Premium
Log in
SQL Function Reference
Functions
MAKETIME
MAKETIME
Returns a time value constructed from the hour, minute, and second arguments.
MySQL
MAKETIME
(
hour
,
minute
,
second
)
hour
The hour value.
minute
The minute value.
second
The second value (can be fractional).
Examples
MySQL
SELECT
MAKETIME
(
12
,
30
,
45
)
;