Describe/desc statement is used to describe table structure
SYNTAX
desc table_name;
EXAMPLE
SQL> desc student; Name Null? Type ------- -------- ---------------------------- ID NOT NULL NUMBER(38) NAME NOT NULL VARCHAR2(20) AGE NOT NULL NUMBER(38) ADDRESS CHAR(25)