MySql 日期時間

2022-05-18 04:13:51 字數 810 閱讀 4480

【mysql】日期時間

1、查詢條件

2、常用函式

有 datetime 型別字段 publish_time 

1、查詢條件

庫中儲存 2004-02-04 格式 where date(publish_time) = '2004-02-04'

庫中儲存 08:08:08 格式 where date(publish_time) = '08:08:08'

庫中儲存 2004-02-04 08:08:08 格式 where timestamp(publis_time) = '2004-02-04 08:08:08'

2、常用函式

to_days(now()) 返回天數。10天以內的資料 where to_days(now()) - to_days(publish_time) <= 10

dayofweek(now()) 返回星期索引。1=星期天、2=星期一、3=星期二、4=星期三、5=星期四、6=星期五、7=星期六

weekday(now()) 返回星期索引。0=星期天、1=星期一、2=星期二、3=星期三、4=星期四、5=星期五、6=星期六

dayofmonth(now()) 返回月份中日。在1到31範圍內

dayofyear(now()) 返回年中的日數, 在1到366範圍內

month(now()) 返回月份,在1到12範圍內

dayname(now()) 返回星期英文全名

monthname(now())  返回月份英文全名

quarter(now()) 返回季度,在1到4範圍內

MySql日期時間

mysql獲取當前日期及日期格式 獲取系統日期 now 格式化日期 date format date,format 注 date 時間字段 string format 日期格式 string create table datetest03 id int auto increment not null...

MySQL 日期時間

now 函式以 yyyy mm dd hh mm ss 返回當前的日期時間,可以直接存到datetime欄位中。curdate 以 yyyy mm dd 的格式返回今天的日期,可以直接存到date欄位中。curtime 以 hh mm ss 的格式返回當前的時間,可以直接存到time欄位中。取得當前...

mysql時間日期 MySql 時間和日期函式

下面是mysql各種內建時間函式 1.curdate current date 用於獲取當前的日期。2.curtime current time 用於獲取現在的時鐘時間。3.now current timestamp localtime sysdate 四類函式可以獲取當前的日期和時鐘時間 4.da...