InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is an illegal unquoted identifier name?(a) 123_id(b) 123id(c) id1(d) 123 |
|
Answer» Correct option is (d) 123 Explanation: In MySQL, the quoted and unquoted identifier names have differences in the level of restrictions imposed on them. An unquoted identifier name can’t have all digits since it would be impossible to distinguish it from an integer constant. |
|