I have a join query that looks at 2 tables and brings in the dates between a timeframe. I have used sysdate when inserting the data. When I select the data from the table, I am able to see the dates, however, I am not sure how to filter the data by date.
I have tried at the end of my query, but I receive no rows selected:
where dateofstart = '04-MAY-20';
I have also tried:
where dateofstart = 'date '2020-05-010';
And finally, I have tried:
dateofstart between '10-May-20' and '16-May-20';
I am using SQL Plus.