tags:

views:

21

answers:

2

is there a format for time only in mysql

A: 
SELECT TIME('2003-12-31 01:02:03');
InSane
A: 

Take a look at TIME: http://www.tizag.com/mysqlTutorial/mysql-time.php

Also, you may store it in int with wudth depending on required precission.

BarsMonster