KnowledgeBoat Logo

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