我们必须使用引号来将保留字用作标识符。引号可以是单引号或双引号,取决于ANSI_QUOTES SQL模式。
如果禁用了此模式,则标识符引号字符为反引号(“`”)。请考虑以下示例,我们创建了一个名为‘select’的表 −
mysql> create table `select`(id int); Query OK, 0 rows affected (0.19 sec)
如果启用了此模式,则可以同时使用反引号(“`”)和双引号(“”)作为标识符引用字符。考虑以下示例,我们创建了一个名为‘trigger’的表 −
mysql> Create table "trigger" (id int); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"trigger" (id int)' at line 1 mysql> Set sql_mode = 'ANSI_Quotes'; Query OK, 0 rows affected (0.03 sec) mysql> Create table "trigger" (id int); Query OK, 0 rows affected (0.17 sec) mysql> Create table `DESCRIBE`(id int); Query OK, 0 rows affected (0.11 sec)
上面的查询显示,我们可以在启用“ANSI_QUOTES”模式后,同时使用反引号(“`”)和双引号(“”)作为标识符引用字符。
原文来自:www.php.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容