1. 程式人生 > >資料庫時間戳的轉換

資料庫時間戳的轉換

時間轉字串 select date_format(now(), ‘%Y-%m-%d’); #結果:2016-01-05

時間轉時間戳 select unix_timestamp(now()); #結果:1452001082

字串轉時間 select str_to_date(‘2016-01-02’, ‘%Y-%m-%d %H’); #結果:2016-01-02 00:00:00

字串轉時間戳 select unix_timestamp(‘2016-01-02’); #結果:1451664000

時間戳轉時間 select from_unixtime(1451997924); #結果:2016-01-05 20:45:24

時間戳轉字串 select from_unixtime(1451997924,’%Y-%d’); //結果:2016-01-05 20:45:24