How do I express "now minus 30 minutes" in an Oracle SQL WHERE, so that I can compare it with a stored timestamp?
The solution is either the dateadd() function or
dateadd()
systimestamp - INTERVAL '30' minute(1)