mysql日期函式彙總 mysql日期函式彙總

2021-10-18 01:48:00 字數 4184 閱讀 6983

一、當前時間獲取

1.now():獲得當前日期+時間

2.sysdate():獲得當前日期+時間

3.current_timestamp, current_timestamp():獲得當前時間戳

二、日期轉換函式、時間轉換函式

1.date_format(date,format), time_format(time,format):日期/時間轉換為字串

select date_format(sysdate(), "%y-%m-%d") from dual;

2.str_to_date(str,format):字串轉換為日期

select str_to_date('1992-04-12', "%y-%m-%d") from dual;

注:format格式整理:

年: %y ——顯示四位 2015; %y ——只顯示後兩位 15

月: %m ——月份的英文顯示 october; %m ——月份的阿拉伯顯示 01-12 ;  %b ——月份的英文縮略顯示 oct ;%c ——月份的阿拉伯顯示 1-12

日: %d ——阿拉伯顯示 00-31;  %d ——帶有英文本尾 1st-31th;  %e ——阿拉伯顯示 1-31;  %j ——年的天 001-366

時: %h ——00-23 ; %h ——01-12;  %i ——01-12;  %k ——0-23;  %l ——1-12

分: %i ——00-59

秒: %s ——00-59;  %s ——00-59

微秒: %f

am/pm:%p

周: %w ——周的英文顯示 ; %w ——周的阿拉伯顯示 0(星期日)-6(星期六);  %a ——周的英文縮略顯示 mon

3.to_days(date), from_days(days):日期、天數轉換

select to_days('2012-08-08');

4.time_to_sec(time), sec_to_time(seconds):時間、秒轉換

select time_to_sec('01:00:05'); -- 3605

select sec_to_time(3605); -- '01:00:05'

5.makdedate(year,dayofyear), maketime(hour,minute,second):拼湊日期時間函式

select makedate(2001,32); -- '2001-02-01'

select maketime(12,15,30); -- '12:15:30'

6.unix 時間戳、日期轉換:

unix_timestamp(),

unix_timestamp(date),

from_unixtime(unix_timestamp),

from_unixtime(unix_timestamp,format)

select unix_timestamp(); -- 1218290027

select unix_timestamp('2008-08-08'); -- 1218124800

select unix_timestamp('2008-08-08 12:30:00'); -- 1218169800

select from_unixtime(1218290027); -- '2008-08-09 21:53:47'

select from_unixtime(1218124800); -- '2008-08-08 00:00:00'

select from_unixtime(1218169800); -- '2008-08-08 12:30:00'

select from_unixtime(1218169800, '%y %d %m %h:%i:%s %x'); -- '2008 8th august 12:30:00 2008'

三、日期時間計算

1.date_add():增加時間間隔

select date_add(now(), interval 1 day); -- add 1 day

select date_add(now(), interval 1 hour);

select date_add(now(), interval 1 minute);

select date_add(now(), interval 1 second);

select date_add(now(), interval 1 microsecond);

select date_add(now(), interval 1 week);

select date_add(now(), interval 1 month);

select date_add(now(), interval 1 quarter);

select date_add(now(), interval 1 year);

select date_add(now(), interval -1 day); -- sub 1 day

2.adddate(), addtime()

3.date_sub():減去乙個時間間隔

select date_sub('1998-01-01 00:00:00', interval '1 1:1:1' day_second); 1997-12-30 22:58:59

4.datediff(date1,date2), timediff(time1,time2):日期、時間相減

select datediff('2008-08-08', '2008-08-01'); -- 7 返回天數

select timediff('2008-08-08 08:08:08', '2008-08-08 00:00:00'); -- 08:08:08返回time差值

5.時間戳(timestamp)轉換、增、減函式:

timestamp(date) -- date to timestamp

timestamp(dt,time) -- dt + time

timestampadd(unit,interval,datetime_expr)

timestampdiff(unit,datetime_expr1,datetime_expr2)

select timestamp('2008-08-08'); -- 2008-08-08 00:00:00

select timestamp('2008-08-08 08:00:00', '01:01:01'); -- 2008-08-08 09:01:01

select timestamp('2008-08-08 08:00:00', '10 01:01:01'); -- 2008-08-18 09:01:01

select timestampadd(day, 1, '2008-08-08 08:00:00'); -- 2008-08-09 08:00:00

select date_add('2008-08-08 08:00:00', interval 1 day); -- 2008-08-09 08:00:00

mysql timestampadd() 函式類似於 date_add()。

select timestampdiff(year,'2002-05-01','2001-01-01'); -- -1

select timestampdiff(day ,'2002-05-01','2001-01-01'); -- -485

select timestampdiff(hour,'2008-08-08 12:00:00','2008-08-08 00:00:00'); -- -12

select datediff('2008-08-08 12:00:00', '2008-08-01 00:00:00'); -- 7

6.時區轉換函式:convert_tz(dt,from_tz,to_tz)

select convert_tz('2008-08-08 12:00:00', '+08:00', '+00:00'); -- 2008-08-08 04:00:00

select date_add('2008-08-08 12:00:00', interval -8 hour); -- 2008-08-08 04:00:00

select date_sub('2008-08-08 12:00:00', interval 8 hour); -- 2008-08-08 04:00:00

select timestampadd(hour, -8, '2008-08-08 12:00:00'); -- 2008-08-08 04:00:00

mysql的日期時間函式小彙總(2)

period diff p1,p2 返回週期p1和 p2 之間的月份數。p1和p2 的格式應該為 yymm 或yyyymm 注意週期引數 p1和p2不是日期值。mysql select period diff 9802,199703 11 datediff expr,expr2 datediff 返...

mysql日期函式轉換 Mysql日期函式大全 轉

date add date,interval expr type date sub date,interval expr type adddate date,interval expr type subdate date,interval expr type 對日期時間進行加減法運算 adddate...

mysql獲取日期語句彙總

彙總一些mysql獲取日期的sql語句。今天select date format now y m d 00 00 00 as 今天開始 select date format now y m d 23 59 59 as 今天結束 昨天 select date format date sub curda...