InterviewSolution
Saved Bookmarks
| 1. |
Which mode is used to turn off the special meaning of backslash and treat it as an ordinary character?(a) NO_ESCAPES_SLASH(b) NO_ESCAPES_BACKSLASH(c) NO_BACKSLASH_ESCAPES(d) NO_BACKSLASH_ESCAPE |
|
Answer» Right answer is (c) NO_BACKSLASH_ESCAPES Best explanation: To turn off the special meaning of backslash in MySQL, and treat it as an ordinary character, the SQL mode named NO_BACKSLASH_ESCAPES is enabled. The escape sequence is treated as characters. |
|