我们是否可以在 MySQL8 中使用“rank”作为列名称?
在 MySQL 版本 8.0.2 中将 rank 定义为 MySQL 保留字。因此,你不能将 rank 用作列名称。你需要在 rank 周围使用反引号。
首先让我们检查我们正在使用的 MySQL 版本。此处,我使用 MySQL 版本 8.0.12 −
mysql> select version(); +-----------+ | version() | +-----------+ | 8.0.12 | +-----------+ 1 row in set (0.00 sec)
使用“rank”作为列名的出现的问题如下 −
mysql> create table DemoTable1596 -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20), -> rank 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 'rank int )' at line 5
以上可见,由于我们使用了保留字作为列名称,所以报错了。
为了避免错误,让我们先创建一个表,并在“rank”周围使用反引号 −
mysql> create table DemoTable1596 -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20), -> `rank` int -> ); Query OK, 0 rows affected (0.51 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable1596(StudentName,`rank`) values('Bob',4567); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable1596(StudentName,`rank`) values('David',1); Query OK, 1 row affected (0.17 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable1596;
这将产生以下输出 −
+----+-------------+------+ | Id | StudentName | rank | +----+-------------+------+ | 1 | Bob | 4567 | | 2 | David | 1 | +----+-------------+------+ 2 rows in set (0.00 sec)
广告