I have the following Oracle sql script, I only need all the records from yesterday.
and fch_date >= TRUNC(SYSDATE -1)
and fch_date < TRUNC(SYSDATE)
This is another sql oracle statement
and fch_date BETWEEN TRUNC(SYSDATE - 1)
and trunc(sysdate) - internal '1' SECOND
Is there a better way to have only all the records from yesterday? Thanks for your help
I want to have all the records from yesterday but all without missing any records