I want to perform a query using sysdate like:
select up_time from exam where up_time like sysdate
which is possible in Oracle.
However,
You may want to use statement_timestamp(). This give the timestamp when the statement was executed. Whereas NOW() and CURRENT_TIMESTAMP give the timestamp when the transaction started.
NOW()
CURRENT_TIMESTAMP
More details in the manual