what is the easiest way of getting count of rows from a table for record added in past 5 min.
Table - Sales
order_num
dt_created
thanks
--gc
Printable View
what is the easiest way of getting count of rows from a table for record added in past 5 min.
Table - Sales
order_num
dt_created
thanks
--gc
select count(order_num) from sales
where dt_created >= sysdate-(5/(60*24))