1select
curdate();
2select
current_date
();3
select curdate()+
0;//
將查詢出來的日期格式轉化為數字45
select
curtime();
6select
current_time
();7
select curtime()+
0;//將查詢出來的時間格式轉化為數字
1可以在語句後面加 as 為查詢結果 新增別名:select
current_timestamp
();2
select
localtime();
3select
now();
4select sysdate();
1select
current_timestamp() as "此時此刻";
在指定日期中提取月份:
1select
month('
2015-09-23
'),monthname('
2015-09-23
');執行結果:
1select
month('
2015-09-23
'),monthname('
2015-09-23
');//
返回月2
select
day('
2014-10-25
');//
返回日3
select
year('
2014-10-25
');//
返回年份
4select dayname('
2014-10-25
');//
返回星期
5select quarter('
2014-10-25
');//
返回季度
6select hour('
09:30:23
'), minute('
09:30:23
'),second('
09:30:23
');//
返回時分秒78
//返回該日期所在週是第幾周
9select week('
2014-10-25
');//
從0開始記
10select weekofyear('
2014-10-25
');//
從1開始記
1112
//返回該日期在該星期中處於第幾天
13select dayofweek('
2014-10-25
');//
星期日為第一天
14select weekday('
2014-10-25
');//
星期一為第0天
15select dayofmonth('
2014-10-25
');//
該天在該月是第幾天
16select dayofyear('
2014-10-25
');//該天在該年是第幾天
SQL日期與時間函式
1.當前系統日期 時間 select getdate 2.dateadd 在向指定日期加上一段時間的基礎上,返回新的 datetime 值 例如 向日期加上2天 select dateadd day,2,2004 10 15 返回 2004 10 17 00 00 00.000 3.datediff...
Mysql 日期與時間函式
mysql 日期與時間函式 快速開發平台 1.得到當前系統日期的函式 select curdate current date curdate 0 2.得到當前系統的時間函式 select curtime,curry time curtime 0 curtime 0 將時間轉換為秒 3.得到系統當前的...
Sql Server中的日期與時間函式
1.當前系統日期 時間 select getdate 2.dateadd 在向指定日期加上一段時間的基礎上,返回新的 datetime 值 例如 向日期加上2天 select dateadd day,2,2004 10 15 返回 2004 10 17 00 00 00.000 3.datediff...