Show Structure

Q:2
Show the structure of the EMPLOYEE table.


SQL> DESC EMPLOYEE;
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------
 EMPNO                                     NOT NULL NUMBER(6)
 NAME                                               CHAR(25)
 DESIGNATION                                        CHAR(20)
 DEPARTMENT                                         CHAR(25)
 BASICPAY                                           NUMBER(8,2)
 DA                                                 NUMBER(8,2)
 TOTAL                                              NUMBER(8,2)