Computer Science, asked by mbohra830, 5 months ago

Write command to create the table student with primary key constraint.​

Answers

Answered by jainbhavna400
2

Answer:

The syntax to create a primary key using the ALTER TABLE statement in SQL is: ALTER TABLE table_name ADD CONSTRAINT constraint_name PRIMARY KEY (column1, column2, ... column_n); table_name.

Similar questions