getting time from 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 date
SELECT NOW();
It returns current date and time.
SELECT
date_format(datecol, '%H:%i:%s') as 'time' FROM table;
-- eg. 10:33:10
SELECT NOW();
It returns current date and time.