InterviewSolution
Saved Bookmarks
| 1. |
Which server mode value enables use of double quotes to wrap identifier names?(a) ANSI(b) ANSI_QUOTES(c) TRADITIONAL(d) PIPES_AS_CONCATThe question was asked in an online interview.Question is from MySQL Identifier Syntax and Naming Rules in division Using SQL to Manage Data of MySQL |
|
Answer» RIGHT CHOICE is (b) ANSI_QUOTES To explain I would SAY: In MYSQL, use of double quotes is enabled when the server SQL mode ‘ANSI_QUOTES’ is set. The use of backticks is still allowed. For example, SELECT TABLE “my table” is a statement that is allowed. |
|