I need to select the records inserted or generated in the basic scott.emp table assuming date created is a new column which inserts the time at the time of creation
select * from emp where (date_Created) between (sysdate -30/1440) and sysdate;
Does the above code works or should i need to look something new
Please advise
Regards,