Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/59.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
MySQL中给定日期或大于系统日期的验证(给定示例查询)_Mysql - Fatal编程技术网

MySQL中给定日期或大于系统日期的验证(给定示例查询)

MySQL中给定日期或大于系统日期的验证(给定示例查询),mysql,Mysql,我需要添加一个where条件,如下所示: where future_date='12/31/9999 12:59:59' or future_date > current system date 如何在MySQL中执行此操作?使用日期和时间函数 where future_date='12/31/9999 12:59:59' or future_date > NOW()

我需要添加一个where条件,如下所示:

where future_date='12/31/9999 12:59:59' or future_date > current system date
如何在MySQL中执行此操作?

使用日期和时间函数

where future_date='12/31/9999 12:59:59' 
or future_date > NOW()