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
What constraint should be applied on a table column so that duplicate values are not allowed in that column, but NULL is allowed.
What constraint should be applied on a table column so that NULL is not allowed in that column, but duplicate values are allowed.
Write an SQL command to make the column M_ID the Primary Key of an already existing table, named MOBILE.
List one advantage and one disadvantage of star topology.