InterviewSolution
Saved Bookmarks
| 1. |
If ANSI_QUOTES is enabled, MySQL treats the double quotes as ________________(a) identifier-quoting character(b) string-quoting character(c) hexadecimal(d) string |
|
Answer» Right option is (a) identifier-quoting character Easiest explanation: The SQL standard specifies the single quotes so that statements are portable across database engines. If ANSI_QUOTES is enabled, MySQL treats the double quotes as identifier-quoting character. |
|