I have a table with 3 columns Id, Data, Date. Date has dataType timestamp with time zone.
I want to get last 5 hours created ids Query. I tried with interval query
Select Id from table where
date > (current_date - INTERVAL '5 hour')
It is showing interval is NOT supported in postgre
How I can query to get Id for last 5 Hour