AdSense

網頁

2024/2/1

PostgreSQL timestamp日期增減

PostgreSQL timestamp欄位日期增減的方式如下。


使用時間日期操作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';


沒有留言:

AdSense