Computer Science

Write an SQL command to remove the Primary Key constraint from a table, named MOBILE. M_ID is the primary key of the table.

SQL Queries

1 Like

Answer

ALTER TABLE MOBILE 
DROP PRIMARY KEY;

Answered By

1 Like


Related Questions