MySQL Function Reference

MAKETIME
Returns a time value constructed from the hour, minute, and second arguments.
MySQL 8.1
MAKETIME(hour, minute, second)
hour
The hour value.
minute
The minute value.
second
The second value (can be fractional).
Examples
MySQL 8.1
SELECT MAKETIME(12, 30, 45);