MySQL日期處理

2021-08-17 22:12:58 字數 1113 閱讀 6270

mysql中的日期通常會定義成字串型別,以便在python等其它程式語言中使用。

下面是mysql表中字段定義為date時的處理函式:

str_to_date(日期字串,日期格式)

將字串型別轉換成日期型別(varchar –> date),通常在insert語句中使用

mysql中的日期格式(注意大小寫):

%y

年%m 月

%d 日

%h 時

%i 分

%s 秒

select str_to_date('1984-1-1 12-23-55', '%y-%m-%d %h-%i-%s');

+——————————————————-+

| str_to_date(『1984-1-1 12-23-55』, 『%y-%m-%d %h-%i-%s』) |

+——————————————————-+

| 1984-01-01 12:23:55 |

+——————————————————-+

1 row in set (0.00 sec)

如果字串中日期同mysql中預設格式相同(年-月-日),mysql自動進行型別轉換

select name, age from tb where birthday = '1984-1-1'

date_format

將日期轉換成指定格式

select date_format('1990-1-3', '%m-%d-%y' );

+————————————–+

| date_format(『1990-1-3』, 『%m-%d-%y』 ) |

+————————————–+

| 01-03-1990 |

+————————————–+

1 row in set (0.00 sec)

to_days 獲取指定日期距公元元年(0)的天數

select to_days(now()) - to_days(birthday) ;

計算出生到現在的天數

mysql 日期處理 mysql日期處理函式

mysql自己有格式化日期格式的函式 date format date,format 根據format字串格式化date值。下列修飾符可以被用在format字串中 m 月名字 january december w 星期名字 sunday saturday d 有英語字首的月份的日期 1st,2nd,...

mysql日期處理 mysql日期處理函式例項解析

這篇文章主要介紹了mysql日期處理函式例項解析,文中通過示例 介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下 首先建立一張實驗用的一張表 drop table if exists t student create table t student id int pr...

mysql處理日期 mysql日期處理函式例項解析

這篇文章主要介紹了mysql日期處理函式例項解析,文中通過示例 介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下 首先建立一張實驗用的一張表 drop table if exists t student create table t student id int pr...