介绍
MySQL中定义了61个日期函数。别担心,我们不会在这里查看它们。本指南将向您介绍一些常见的,并为您提供足够的曝光,让您自己探索。
我们将涵盖:
- 获取当前日期
- 日期数学
- 在where或having子句中的日期
获取当前日期
从系统中获取日期对于使用SQL处理数据非常方便。
-- current date
select now(), sysdate(), current_date(), current_time(), -- date and time from the system on execution
dayofyear(now()) as NumDaysSoFarThisYr,
EXTRACT(YEAR FROM now()) as theYearPart,
EXTRACT(YEAR_MONTH FROM now()) as theYrMonPart,
date_format(now(), '%W %M %Y') as oneOfManyFormats;
在SQL查询中,我们看到以下内容:
- 结果中的前两列是获取相同信息的两种方法:执行SQL时系统上的日期。
- 接下来的两列仅切出系统日期的日期和时间部分。
- 下一个显示今年系统日期的“日期编号”。您会注意到,这比下一个示例中显示的数学要多一天。
- 接下来的两个只提取年份,然后提取年和月
- 最后,但并非最不重要的是,有一个格式化日期的方法之一的例子。
日期数学
select now(), current_date(),
datediff(now(),'2017-01-01') as daysThisYear,
subdate(current_date(), interval 150 day) as '150DaysAgo',
adddate(now(), interval 7 day) as dateInA_Week -- date in a week
;
我们在这里看到:
- 前两列只是系统日期和时间供参考。
- 第二列是2017年1月1日到系统日期之间的日期差异(datediff)。
- 最后两列是减去和添加日期的示例。
在where或having子句中
以下是在where子句中使用日期数学的两个示例:
select * from student; - to show the current data being used for the example
select * from student where recordCreated < '2017-01-01';
select * from student where recordCreated < subdate(current_date(), interval 225 day);
更多SQL教程
学习更多SQL教程