InterviewSolution
Saved Bookmarks
| 1. |
Which mode tells the server to recognize double quote as an identifier quoting character?(a) ANSI_DQ(b) ANSI_QUOTES(c) ANSI_RECG_QUOTES(d) ANSI_RECG_DQUOTES |
|
Answer» Right option is (b) ANSI_QUOTES The explanation: ‘ANSI_QUOTES’ is the MySQL server mode value stored in the system variable which directs the MySQL server to treat the double quote character as a quoting character for identifiers. The others are not valid mode values. |
|