mysqljava資料庫
當前有張news表 有字段 addtime ,name ,
查詢當前時間起,24小時前的數據,時間不知怎麼寫。
article
where to_days(add_time
) = to_days(now());article
where to_days(now()) – to_days(add_time
)
article
where date_sub(curdate(), INTERVAL 7 DAY) add_time);article
where date_sub(curdate(), INTERVAL 30 DAY) add_time);article
where date_format(add_time
, ‘%Y%m') = date_format(curdate() , ‘%Y%m');article
where period_diff(date_format(now() , ‘%Y%m') , date_format(add_time
, ‘%Y%m')) =1;select * from news where datediff(year,addtime,getdate())
或select * from news where addtime> sysdate-1
不需要考慮這個addtime的日期類型嗎?
想法是把sysdate-addtime>1,當然,前提是日期格式相同