Why are there no rows selected when clearly there is a class with a start date that equals sysdate + 3?
SQL> select sysdate + 3 from dual;
SYSDATE+3
---------
18-OCT-04
SQL> select class_no from tpt_classes where start_date = sysdate + 3;
no rows selected
SQL> select start_date from tpt_classes where class_no = '047483';
START_DAT
---------
18-OCT-04
SQL>
SQL> select sysdate + 3 from dual;
SYSDATE+3
---------
18-OCT-04
SQL> select class_no from tpt_classes where start_date = sysdate + 3;
no rows selected
SQL> select start_date from tpt_classes where class_no = '047483';
START_DAT
---------
18-OCT-04
SQL>