Computer Science
Write an SQL command to make the column M_ID the Primary Key of an already existing table, named MOBILE.
SQL Queries
2 Likes
Answer
ALTER TABLE MOBILE
ADD PRIMARY KEY (M_ID);
Answered By
1 Like
Related Questions
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 remove the Primary Key constraint from a table, named MOBILE. M_ID is the primary key of the table.
List one advantage and one disadvantage of star topology.
Expand the term SMTP. What is the use of SMTP ?