Mysql 字串日期互轉

2022-09-05 18:24:10 字數 578 閱讀 2916

時間轉字串: date_format(日期,格式字串)

select date_format(now(), '

%y-%m-%d %h:%i:%s');

--now()為當期時間

--結果:2019-08-20 20:40:08

select str_to_date('

2019-08-20 20:40:08

', '

%y-%m-%d %h:%i');

--結果:2019-08-20 20:40:00

時間轉時間戳:

select

unix_timestamp(now());

--now()為當期時間

--結果:1566304856

字串轉時間戳:

select unix_timestamp('

2019-08-20');

--結果:1566230400

時間戳轉字串:

select from_unixtime(1566230400,'

%y-%m-%d');

--結果:2019-08-20

mysql 日期字串互轉

字串轉日期 select str to date 2008 4 2 15 3 28 y m d h i s select str to date 2008 08 09 08 9 30 y m d h i s 日期轉字串 select date format now y m d 時間戳轉日期 sele...

MYSQL日期 字串 時間戳互轉

平時比較常用的時間 字串 時間戳之間的互相轉換,雖然常用但是幾乎每次使用時候都喜歡去搜尋一下用法 本文將作為乙個筆記,整理一下三者之間的 轉換 即 date轉字串 date轉時間戳 字串轉date 字串轉時間戳 時間戳轉date,時間戳轉字串 用法,方便日後檢視 date format date,f...

MySQL日期 字串 時間戳互轉

原位址 平時比較常用的時間 字串 時間戳之間的互相轉換,雖然常用但是幾乎每次使用時候都喜歡去搜尋一下用法 本文將作為乙個筆記,整理一下三者之間的 轉換 即 date轉字串 date轉時間戳 字串轉date 字串轉時間戳 時間戳轉date,時間戳轉字串 用法,方便日後檢視 date format da...