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) stringI have been asked this question in homework.The origin of the question is Data Value Categories topic in division Data Types of MySQL |
|
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. |
|