.create table employee (name varchar id integer) what type of statement is this
a) dml
b) view
c) ddl
d) integrity constraint
Answers
Answered by
9
Answer:
ddl
hope it helps u
please follow me
and mark as brainlist
Answered by
3
Answer:
For the above statement, DDL is the correct option.
DDL stands for Data Description Language. DDL statements let you perform these tasks :
1. Creating a table: For creating the table, use the CREATE TABLE statement.
syntax: CREATE TABLE table_name (column 1 datatype(size) , column2 datatype(size)
2. Altering the table: For adding a new column and modifying an existing column, use the ALTER TABLE statement.
syntax: ALTER TABLE table_name
3. Dropping a table: For moving a table or removing a table, use the DROP TABLE statement.
syntax: DROP TABLE table_name
Similar questions