Advertisements
Advertisements
Question
Ms. Veda created a table named Sports
in a MySQL database, containing columns Game_id, P_Age and G_name
.
After creating the table, she realized that the attribute, Category
has to be added. Help her to write a command to add the Category
column. Thereafter, write the command to insert the following record in the table:
Game_id:
G42P_Age:
Above 18G_name:
ChessCategory:
Senior
Short Answer
Solution
Alter table Sports ADD Category varchar(20); Insert into Sports values("G42","Above 18","Chess","Senior");
shaalaa.com
Is there an error in this question or solution?