MySQL 日期,字串,時間戳之間的互相轉換

2021-09-05 10:45:22 字數 1052 閱讀 6524

一、資料的獲取

1.獲取當前時間戳

select unix_timestamp();
2.獲取當前時間

select now();
二、資料的轉換1.《時間戳》轉《時間》使用from_unixtime函式

select from_unixtime(1515980716);
2.《時間戳》轉《字串》使用from_unixtime函式

select from_unixtime(1515980716, '%y-%m-%d %h:%i:%s');
3.《時間》轉《字串》使用date_format函式

select date_format(now(), '%y-%m-%d');
4.《時間》轉《時間戳》使用unix_timestamp函式

select unix_timestamp(now());
5.《字串》轉《時間戳》使用unix_timestamp函式

select unix_timestamp('2018-12-26 15:45:10');
6.《字串》轉《時間》使用str_to_date函式

select str_to_date('2018-12-26', '%y-%m-%d');
三、sql示例

1.查詢當天的資料

select * from table_request where date_format(from_unixtime(時間戳),'%y-%m-%d') = date_format(now(),'%y-%m-%d');
四、mysql日期格式化(format)取值範圍

MYSQL日期 字串 時間戳互轉

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

MySQL日期 字串 時間戳互轉

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

MySQL日期 字串 時間戳互轉

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