Mysql日期函数基本应用
时间:2010-10-08 来源:chenjialin2000
获取当前日期:select current_date ; select current_timestamp;
计算时间差: select DATEDIFF(current_timestamp,'2010-09-01') select TIMESTAMPDIFF(SECOND ,current_timestamp,'2010-09-01')
日期格式化: select date_format(CURRENT_TIMESTAMP,'%Y-%m-%d')
日期的加减: select DATE_ADD('1998-01-30', Interval 1 month)
计算时间差: select DATEDIFF(current_timestamp,'2010-09-01') select TIMESTAMPDIFF(SECOND ,current_timestamp,'2010-09-01')
日期格式化: select date_format(CURRENT_TIMESTAMP,'%Y-%m-%d')
日期的加减: select DATE_ADD('1998-01-30', Interval 1 month)
相关阅读 更多 +