The following query:
select cdate from rprt where cdate <= TO_CHAR(sysdate, \'YYYY/MM/DD-HH24-MI-SS-SSSSS\') and ryg=\'R\' and cnum=\'C002\';
<
In Oracle 11g, To get the complete date from the Timestamp, use this-
Select TRUNC(timestamp) FROM TABLE_NAME;
To get the Year from the Timestamp, use this-
Select EXTRACT(YEAR FROM TRUNC(timestamp)) from TABLE_NAME;
To get the Month from the Timestamp, use this-
Select EXTRACT(MONTH FROM TRUNC(timestamp)) from TABLE_NAME;
To get the Day from the Timestamp, use this-
Select EXTRACT(DAY FROM TRUNC(timestamp)) from TABLE_NAME;