top of page
148
MySQL 8.0
MAKETIME
Syntax:
MAKETIME(hour,minute,second)
Returns a time value calculated from the hour, minute, and second
arguments.
The second argument can have a fractional part.
mysql> SELECT MAKETIME(12,15,30);
-> '12:15:30'
bottom of page