|
Your SQL statement is trying to select the TIMESTAMP column from the DUAL table. This table does not contain that column therefore an error is thrown. If you want to see the current time, issue the following
query:
SELECT sysdate FROM dual;
If you need this information returned in the TIMESTAMP datatype, you will have to use a function to convert the data:
SELECT to_timestamp(sysdate) FROM dual;
|