mysql中時間和字串相互轉換應用

2021-10-04 13:34:05 字數 1671 閱讀 1567

mysql時間與字串之間相互轉換

1.時間轉字串

date_format(日期,格式字串)

select date_format

(now()

,'%y-%m-%d %h:%i:%s'

);

2.字串轉時間str_to_date(字串,日誌格式)

3.時間轉時間戳

4.字串轉時間戳

5.時間戳轉字串

附日期格式如下:%m 月名字(january……december)

%w 星期名字(sunday……saturday)

%d 有英語字首的月份的日期(1st, 2nd, 3rd, 等等。)

%y 年, 數字, 4 位

%y 年, 數字, 2 位

%a 縮寫的星期名字(sun……sat)

%d 月份中的天數, 數字(00……31)

%e 月份中的天數, 數字(0……31)

%m 月, 數字(01……12)

%c 月, 數字(1……12)

%b 縮寫的月份名字(jan……dec)

%j 一年中的天數(001……366)

%h 小時(00……23)

%k 小時(0……23)

%h 小時(01……12)

%i 小時(01……12)

%l 小時(1……12)

%i 分鐘, 數字(00……59)

%r 時間,12 小時(hh:mm:ss [ap]m)

%t 時間,24 小時(hh:mm:ss)

%s 秒(00……59)

%s 秒(00……59)

%p am或pm

%w 乙個星期中的天數(0=sunday ……6=saturday )

%u 星期(0……52), 這裡星期天是星期的第一天

%u 星期(0……52), 這裡星期一是星期的第一

Mysql中時間戳 時間字串 時間相互轉換

時間轉為時間字串 select date format now y m d h i s 時間轉時間戳 select unix timestamp now select from unixtime 1583977221 時間戳轉時間字串 注意這裡的時間戳是10位的 select from unixti...

mysql時間與字串相互轉換

時間 字串 時間戳之間的互相轉換很常用,但是幾乎每次使用時候都喜歡去搜尋一下用法 本文整理一下三者之間的 轉換 即 date轉字串 date轉時間戳 字串轉date 字串轉時間戳 時間戳轉date,時間戳轉字串 用法,方便日後學習和查閱 date format date,format 函式,mysq...

mysql時間與字串相互轉換

時間 字串 時間戳之間的互相轉換很常用,但是幾乎每次使用時候都喜歡去搜尋一下用法 本文整理一下三者之間的 轉換 即 date轉字串 date轉時間戳 字串轉date 字串轉時間戳 時間戳轉date,時間戳轉字串 用法,方便日後學習和查閱 date format date,format 函式,mysq...