InterviewSolution
| 1. |
Explain DDL commands with example. |
|
Answer» DDL -Data Definition Language commands create database objects such as tables, views, etc., The various DDL commands are Create Table, Alter Table, Create View, Drop Table. 3 AMOUNT NUMBER, The ALTER TABLE command is used to do two things:
SYNTAX: ALTER TABLE table_name ADD( column_name data_type); DROP command is used to remove the entire table from the database. |
|