0
我需要添加一個WHERE條件類似下面這樣:指定的日期或比系統日期驗證更大的MySQL中(樣本查詢給出)
where future_date='12/31/9999 12:59:59' or future_date > current system date
我怎樣才能做到這一點在MySQL?
我需要添加一個WHERE條件類似下面這樣:指定的日期或比系統日期驗證更大的MySQL中(樣本查詢給出)
where future_date='12/31/9999 12:59:59' or future_date > current system date
我怎樣才能做到這一點在MySQL?
使用NOW()
日期和時間函數
where future_date='12/31/9999 12:59:59'
or future_date > NOW()