MySQL 查询中的表和列的引号真的有必要吗?
如果表名或列名是任何的保留字,则需要在 MySQL 查询中对表名和列名使用引号。你需在表名和列名周围使用反引号。语法如下
SELECT *FROM `table` where `where`=condition;
以下是创建不带引号的、带有保留字的表的查询。由于这些是预定义的保留字,因此你将收到错误。错误如下
mysql> create table table -> ( -> where 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 'table ( where int )' at line 1
现在,让我们在表名和列名周围加上引号,因为“table”和“where”是保留字。以下是带引号的查询
mysql> create table `table` -> ( -> `where` int -> ); Query OK, 0 rows affected (0.55 sec)
使用 insert 命令在表中插入记录。查询如下
mysql> insert into `table`(`where`) values(1); Query OK, 1 row affected (0.13 sec) mysql> insert into `table`(`where`) values(100); Query OK, 1 row affected (0.26 sec) mysql> insert into `table`(`where`) values(1000); Query OK, 1 row affected (0.13 sec)
在 where 的条件帮助下,显示表中的特定记录。查询如下
mysql> select *from `table` where `where`=100;
以下是输出
+-------+ | where | +-------+ | 100 | +-------+ 1 row in set (0.00 sec)
广告