Mysql日期函数基本应用

获取当前日期: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)





你可能感兴趣的:(mysql,数据库,函数,应用,休闲)