KnowledgeBoat Logo

Computer Science

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

DDL & DML

3 Likes

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.

Answered By

1 Like


Related Questions