InterviewSolution
Saved Bookmarks
| 1. |
Which of the following characters cannot be used as a delimiter?(a) ,(b) .(c) ;(d) \This question was addressed to me in a national level competition.Asked question is from Compound Statements and Statement Delimiters topic in portion Stored Programs of MySQL |
|
Answer» RIGHT option is (d) \ For explanation: In MySQL, the CHARACTER backslash character is reserved for specifying escape sequences. For EXAMPLE, the escape sequence ‘\t’ specifies a TAB space character. It cannot be used as a DELIMITER. |
|