CBSE Class 12 Computer Science Question 37 of 79

Table Creation and Data Manipulation Commands — Question 11

Back to all questions
11
Question

Question 11

Which command defines its columns, integrity constraint in create table :

  1. Create table command
  2. Drop table command
  3. Alter table command
  4. All of these
Answer

Create table command

Reason — The CREATE TABLE command is used to define a new table in SQL, and it allows to define the columns of the table along with any integrity constraints such as primary keys, foreign keys, unique constraints, etc.