我们可以在MySQL中使用反引号和列值吗?

您不能将反引号与列值一起使用。为此,仅使用表名或列名。如果对列值使用反引号,则MySQL将给出以下错误消息:

ERROR 1054 (42S22): Unknown column '191.23.41.10' in 'where clause'

让我们首先创建一个表:

mysql> create table DemoTable6
(
   SystemIPAddress varchar(200)
);

以下是使用insert命令在表中插入一些记录的查询:

mysql> insert into DemoTable values('192.68.1.0');
mysql> insert into DemoTable values('191.23.41.10');

现在,您可以使用select语句显示表中的特定记录:

mysql> select *from DemoTable where SystemIPAddress=`191.23.41.10`;

这将产生以下输出,即错误,因为我们对列值使用了反引号:

ERROR 1054 (42S22): Unknown column '191.23.41.10' in 'where clause'

让我们看看显示相同记录的正确方法:

mysql> select *from DemoTable where SystemIPAddress='191.23.41.10';

这将产生以下输出:

+-----------------+
| SystemIPAddress |
+-----------------+
| 191.23.41.10    |
+-----------------+
1 row in set (0.00 sec)