InterviewSolution
Saved Bookmarks
| 1. |
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. |
|
Answer» Alter,Table Student Add,(Game-played VAR, CHAR(30)); |
|