Home » MYSQL » Mysql Basic » Question
  1. Which server mode value enables use of double quotes to wrap identifier names?
    1. PIPES_AS_CONCAT
    2. ANSI
    3. ANSI_QUOTES
    4. TRADITIONAL
    5. None of these
Correct Option: C

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.



Your comments will be displayed only after manual approval.