引用MySQL查询中的表和列真的有必要吗?

引用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)

阅读更多:MySQL 教程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

MySQL 教程