InterviewSolution
Saved Bookmarks
| 1. |
Which server mode value disables use of built in function names as identifiers?(a) ANSI(b) IGNORE_FUNC(c) TRADITIONAL(d) IGNORE_SPACEThe question was asked during an interview.My query is from MySQL Identifier Syntax and Naming Rules topic in portion Using SQL to Manage Data of MySQL |
|
Answer» RIGHT OPTION is (d) IGNORE_SPACE Easiest explanation: The SERVER SQL mode value ‘IGNORE_FUNC’ is used to RESTRICT the identifier naming conventions. When this is enabled, the names of built in functions can no longer be used as identifiers. |
|