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,
NOW() is the replacement of Oracle Sysdate in Postgres.
Try "Select now()", it will give you the system timestamp.