2

postgres データベースにタイムスタンプ フィールドがあります。過去 1 か月以内に発生したすべての日付を選択したいと思います。select * from table where timestamp > (現在のタイムスタンプ - 1 か月) のようなものです。

4

2 に答える 2

11
select * from table where timestamp > now() - interval '1 month'
于 2012-06-08T02:02:55.840 に答える
5

正確には:

SELECT *
FROM   tbl
WHERE  ts_col >  now() - interval '1 month'
AND    ts_col <= now();
于 2012-06-08T02:19:40.020 に答える