标签: mysql
我需要在下面添加一个where条件:
where future_date='12/31/9999 12:59:59' or future_date > current system date
我如何在MySQL中执行此操作?
答案 0 :(得分:0)
使用NOW()日期和时间函数
NOW()
where future_date='12/31/9999 12:59:59' or future_date > NOW()