为此,您可以使用DATEDIFF()
。让我们首先创建一个表-
mysql> create table DemoTable -> ( -> ShippingDate datetime -> );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('2019-07-01'); mysql> insert into DemoTable values('2019-07-02'); mysql> insert into DemoTable values('2019-07-03'); mysql> insert into DemoTable values('2019-07-04');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
输出结果
+---------------------+ | ShippingDate | +---------------------+ | 2019-07-01 00:00:00 | | 2019-07-02 00:00:00 | | 2019-07-03 00:00:00 | | 2019-07-04 00:00:00 | +---------------------+ 4 rows in set (0.00 sec)
以下是查询以检查datetime是否等于MySQL中的明天日期的查询-
mysql> select *from DemoTable -> WHERE DATEDIFF(ShippingDate, DATE_ADD(CURDATE(), INTERVAL 1 DAY)) = 0;
这将产生以下输出,显示明天的日期2019-07-02是表中的日期之一-
输出结果
+---------------------+ | ShippingDate | +---------------------+ | 2019-07-02 00:00:00 | +---------------------+ 1 row in set (0.08 sec)