程式與日常
PostgreSQL timestamp欄位日期增減的方式如下。
使用時間日期操作INTERVAL + 時間單位。
INTERVAL
例如查詢建立時間前5天的資料。
select * from employee e where e.create_at < now() - interval '5 days';
例如查詢建立時間前1個月的資料。
select * from employee e where e.create_at < now() - interval '1 months';
張貼留言
沒有留言:
張貼留言