在MySQL中给出日期或大于系统日期验证(给出样本查询)

时间:2015-06-29 20:36:14

标签: mysql

我需要在下面添加一个where条件:

where future_date='12/31/9999 12:59:59' or future_date > current system date

我如何在MySQL中执行此操作?

1 个答案:

答案 0 :(得分:0)

使用NOW()日期和时间函数

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