将时间转换为时间戳

1、将时间转换为时间戳
select unix_timestamp('2009-10-26 10-06-07')
如果参数为空,则处理为当前时间
2、将时间戳转换为时间
select from_unixtime(1256540102)
有些应用生成的时间戳是比这个多出三位,是毫秒表示,如果要转换,需要先将最后三位去掉,否则返回NULL

 

 

select date_format(日期字段,’%Y-%m-%d’) as ‘日期’ from test

posted @ 2012-09-01 20:52  套狗的汉子  阅读(155)  评论(0编辑  收藏  举报