InterviewSolution
Saved Bookmarks
| 1. |
Which statement makes changes to the database’s global attributes?(a) CHANGE(b) ALTER(c) ALTERNATE(d) UPDATEThe question was posed to me in class test.The question is from Selecting, Creating, Dropping and Altering Databases topic in section Using SQL to Manage Data of MySQL |
|
Answer» RIGHT choice is (b) ALTER The explanation: The ‘ALTER TABLE’ STATEMENT is used to MAKE changes to a database’s global attributes. This statement is followed by the NAME of the database, CHARACTER set and collation. |
|