Database - Managing Databases with Oracle - Discussion

Discussion Forum : Managing Databases with Oracle - General Questions (Q.No. 19)
19.
To obtain the structure of an Oracle table, the command to use is:
STRUCTURE [TableName].
DESCRIBE [TableName].
DESCRIBE STRUCTURE [TableName].
DESC TABLE [TableName].
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Ankit said:   8 years ago
Desc [table-name] is the right answer.

Swastik said:   9 years ago
DESC TABLE [TableName] will be the correct answer.

Deepak Patel said:   1 decade ago
But in option 4th is right answer, as per my perception. Because you are finally using "desc TableName" command only.

Dhatchayini said:   1 decade ago
Tell me the explanation of that answer.

Surendra said:   1 decade ago
Desc tablename;

It is the desrption of table, It will return the skeleton of the table.

Post your comments here:

Your comments will be displayed after verification.