MySQL 查询中的表和列真的需要用引号引起来吗?
mysqlmysqli database
如果您的表名或列名是任何保留字,那么您需要在 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)