+2 votes
in Class 12 by kratos

While creating the table Student last week, Ms. Sharma forgot to include the column Game_played. Now write a command to insert the Game_played column with VARCHAR data type and 30 size into the Student table.

1 Answer

+1 vote
by kratos
 
Best answer

Alter,Table Student Add,(Game-played VAR, CHAR(30));

...