MySQLADDTIME()
函数可用于在存储在表的列中的数据中添加时间间隔。该函数的语法为ADDTIME(date,'expression unit')。可以通过使用使用表'collegedetail'中的数据的示例进行演示。
mysql> Select estb, ADDTIME(estb, '05:04:25')AS 'Date with time' From collegedetail WHERE ID = 111; +------------+---------------------+ | estb | Date with time | +------------+---------------------+ | 2010-05-01 | 2010-05-01 05:04:25 | +------------+---------------------+ 1 row in set (0.02 sec)
在这里,“ estb”是表“ collegedetail”的一列,其中以日期为值。