SEM-III Database Design (1)
SEM-III Database Design (1)
SQL> Create table employee(eid varchar2(4) primary key, ename varchar2(8), dob
date, desg varchar2(10),sal number(5),doj date);
2. Alter command for altering the column name and datatypes of a column in the
table.
4. Alter command to modify the existing name of the column in the table.
12. Select command for selecting the records by using ORDER BY clause ASC.
13. Select command for selecting the records by using ORDER BY clause DESC.