I have a timestamp field in a postgres database. I would like to select all dates that have happened within the last month. So something like select * from table where time
select * from table where timestamp > now() - interval '1 month'