time in get only date in mysql code example
Example 1: mysql get time from datetime
SELECT
date_format(datecol, '%H:%i:%s') as 'time' FROM table;
-- eg. 10:33:10
Example 2: mysql current time
CURRENT_TIME return HH:ii:ss format time in mysql
SELECT
date_format(datecol, '%H:%i:%s') as 'time' FROM table;
-- eg. 10:33:10
CURRENT_TIME return HH:ii:ss format time in mysql