TIME()
TIME(time)This function returns the time from a given string or column containing date and time data. It’s available as of version 4.1.1 of MySQL. Here is an example:
SELECT NOW( ), As Now, TIME(NOW( )) AS 'Time only'; +---------------------+-----------+ | Now | Time only | +---------------------+-----------+ | 2008-03-17 00:19:17 | 00:19:17 | +---------------------+-----------+