When I give the below command, the system is giving me an error. Can you please tell me the syntax?
Here is what I did:
SQL> select timestamp from dual;
select timestamp from dual
*
ERROR at line 1:
ORA-00904: invalid column name
Requires Free Membership to View
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;
This was first published in December 2004

Join the conversationComment
Share
Comments
Results
Contribute to the conversation