InterviewSolution
Saved Bookmarks
| 1. |
Which of these is not a comment specifying construct?(a) #(b) /* */(c) —(d) !# |
|
Answer» Correct option is (d) !# Easiest explanation: The MySQL server understands three types of comments. The single line ‘#’ construct, the multiline /*…*/ construct and the — comment construct. MySQL conforms to the comment standards of SQL. |
|