当前位置:网站首页>MySQL日期函数
MySQL日期函数
2022-07-06 09:30:00 【My71】
下文中使用到的数据库,可参考 创建练习数据库
返回当前日期
函数:CURDATE()
指令
SELECT CURDATE();
运行结果
返回当前时间
函数:CURTIME()
指令
SELECT CURTIME();
运行结果
返回当前日期和时间
函数:NOW()
指令
SELECT NOW()
运行结果
提取日期值
函数:DATE()
指令
SELECT DATE('2021-10-31 11:36:20')
运行结果
提取年份值
函数:YEAR()
指令
SELECT YEAR('2021-10-31 11:36:20')
运行结果
提取月份值
函数:MONTH()
指令
SELECT MONTH('2021-10-31 11:36:20')
运行结果
提取天数值
函数:DAY()
指令
SELECT DAY('2021-10-31 11:36:20')
运行结果
提取小时值
函数:HOUR()
指令
SELECT HOUR('2021-10-31 11:36:20')
运行结果
提取分钟值
函数:MINUTE()
指令
SELECT MINUTE('2021-10-31 11:36:20')
运行结果
提取秒数值
函数:SECOND()
指令
SELECT SECOND('2021-10-31 11:36:20')
运行结果
将秒数转为时间
函数:SEC_TO_TIME
指令
SELECT SEC_TO_TIME(3661)
运行结果
将时间转为秒数
函数:TIME_TO_SEC()
指令
SELECT TIME_TO_SEC('1:01:01')
运行结果
计算 n 天后的日期
函数:ADDDATE(d,n)
说明:d 表示日期,n 表示天数。
指令
SELECT ADDDATE('2021-10-31',10)
运行结果
计算 n 天前的日期
函数:SUBDATE(d,n)
说明:d 表示日期,n 表示天数。
指令
SELECT SUBDATE('2021-10-31 12:23:20',10)
运行结果
计算 n 秒后的时间
函数:ADDTIME(t,n)
说明:t 表示时间,n 表示时间间隔,当 n 为整数时要小于 60,也可以用字符串表示。
指令
SELECT ADDTIME('2021-10-31 11:43:25',5),ADDTIME('2021-10-31 11:43:25','2:10:15')
运行结果
计算 n 秒前的时间
函数:SUBTIME()
说明:t 表示时间,n 表示时间间隔,当 n 为整数时要小于 60,也可以用字符串表示。
指令
SELECT SUBTIME('2021-10-31 12:23:20',10),SUBTIME('2021-10-31 12:23:20','2:3:20')
运行结果
计算日期间隔
函数:DATEDIFF(d1,d2)
说明:d1 表示结束日期,d2 表示开始日期。
指令
SELECT DATEDIFF('2022-01-01','2021-10-31'),DATEDIFF('2021-10-31','2022-01-01')
运行结果
计算时间间隔
函数:TIMEDIFF(t1,t2)
说明:t1 是开始时间 t2 结束时间
指令
SELECT TIMEDIFF('12:31:20','11:30:10')
运行结果
练习:计算 xs 表中所有人的年龄
指令
select 学号,姓名,出生日期,DATEDIFF(NOW(),出生日期) DIV 365 as 年龄 from xs;
运行结果
边栏推荐
- LeetCode 1561. The maximum number of coins you can get
- Native JS realizes the functions of all selection and inverse selection -- Feng Hao's blog
- Some instructions on whether to call destructor when QT window closes and application stops
- The "advertising maniacs" in this group of programmers turned Tiktok advertisements into ar games
- [unsolved]7-14 calculation diagram
- string. How to choose h and string and CString
- 7-6 sum of combinatorial numbers
- Many papers on ByteDance have been selected into CVPR 2021, and the selected dry goods are here
- LeetCode 1640. Can I connect to form an array
- Fdog series (III): use Tencent cloud SMS interface to send SMS, write database, deploy to server, web finale.
猜你喜欢
Shell_ 01_ data processing
我走過最迷的路,是字節跳動程序員的腦回路
谢邀,人在工区,刚交代码,在下字节跳动实习生
Shell_ 07_ Functions and regular expressions
视频压缩编码和音频压缩编码基本原理
数据传送指令
汇编语言段定义
Use JQ to realize the reverse selection of all and no selection at all - Feng Hao's blog
~87 animation
Soft music -js find the number of times that character appears in the string - Feng Hao's blog
随机推荐
LeetCode 1984. Minimum difference in student scores
One hundred questions of image processing (11-20)
Yao BanZhi and his team came together, and the competition experts gathered together. What fairy programming competition is this?
7-5 blessing arrived
~85 transition
SQL quick start
搭建flutter环境入坑集合
Codeforces Global Round 19
7-8 likes (need to continue to improve)
string. How to choose h and string and CString
Fdog series (V): use QT to imitate QQ to realize login interface to main interface, function chapter.
How to generate six digit verification code
这群程序员中的「广告狂人」,把抖音广告做成了AR游戏
CMake速成
TypeScript基本操作
Shell_ 05_ operator
~87 animation
Fdog series (I): think about it. It's better to write a chat software. Then start with the imitation QQ registration page.
Educational Codeforces Round 122 (Rated for Div. 2)
~74 JD top navigation bar exercise