日期函式
select curdate()
2020-09
-12now(
)2020-09
-1217:
22:10
格式化
date_format
(planneddate,
'%y-%m-%d %h:%m:%s'
)//這裡符號是單引號
date_sub
(now()
, interval 7 day) 七天前
date_sub
(now()
, interval -
7 day) 七天後
今天:
select * from 表名 where to_days
( 時間欄位名)
=to_days
(now()
);
昨天:
select * from 表名 where to_days
(now()
)-to_days
( 時間欄位名)
<=
1;
本月:
select * from 表名 where date_format
( 時間欄位名,
'%y%m')=
date_format
(curdate()
,'%y%m'
);
#查詢本季度資料
quarter
(create_date)
=quarter
(now()
);
#查詢上季度資料
quarter
(create_date)
=quarter
(date_sub
(now()
,interval 1 quarter)
);
#查詢本年資料
year
(create_date)
=year
(now()
);
#查詢上年資料
year
(create_date)
=year
(date_sub
(now()
,interval 1 year)
);
查詢當前這週的資料
yearweek
(date_format
(submittime,
'%y-%m-%d'))
=yearweek
(now()
);
查詢上週的資料
yearweek
(date_format
(submittime,
'%y-%m-%d'))
=yearweek
(now()
)-1
查詢最近7天、30天的資料,如下圖所示:
select * from 資料庫表名 where date_sub
(curdate()
, interval 7 day)
<=
date
(時間欄位名)
select * from 資料庫表名 where date_sub
(curdate()
, interval 30 day)
<=
date
(時間欄位名)
查詢上月的資料,如下圖所示:
select * from 資料庫表名 where period_diff
(date_format
(now()
,'%y%m'),
date_format
( 時間欄位名,
'%y%m'))
=1
何隆昌 windows埠占用,程序占用
電腦cmd 檢視所有埠 netstat ano檢視單個埠 netstat aon findstr 9000 強制終止程序 taskkill f t im 1 使用命令檢視埠,這裡檢視10000埠 netstat aon findstr 10000 在這裡,可以看到,本地的10000埠被pid為436...
mysql日期函式彙總 mysql日期函式彙總
一 當前時間獲取 1.now 獲得當前日期 時間 2.sysdate 獲得當前日期 時間 3.current timestamp,current timestamp 獲得當前時間戳 二 日期轉換函式 時間轉換函式 1.date format date,format time format time,...
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...