要获取日期之间的日期,您需要使用。在这里,我们得到的日期介于今天和今天之间7天-
select *from yourTableName where DATE(yourColumnName) > (NOW() - INTERVAL 7 DAY);
注意:假设当前日期为“ 2019-06-02”,我们首先创建一个表。
mysql> create table DemoTable ( LoginDate date );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('2018-03-21'); mysql> insert into DemoTable values('2019-05-22'); mysql> insert into DemoTable values('2019-05-27'); mysql> insert into DemoTable values('2019-06-01');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
输出结果
+------------+ | LoginDate | +------------+ | 2018-03-21 | | 2019-05-22 | | 2019-05-27 | | 2019-06-01 | +------------+ 4 rows in set (0.00 sec)
以下是显示今天和今天之间的日期的查询-7天-
mysql> select *from DemoTable where DATE(LoginDate) > (NOW() - INTERVAL 7 DAY);
输出结果
+------------+ | LoginDate | +------------+ | 2019-05-27 | | 2019-06-01 | +------------+ 2 rows in set (0.06 sec)