假设我们尝试创建一个名为“groups”的表,这是 Mysql 中的保留关键字。您不能使用“groups”,因为 groups 是 mysql 中的保留关键字。创建名为“groups”的表时发生以下错误 -mysql> create
假设我们尝试创建一个名为“groups”的表,这是 Mysql 中的保留关键字。您不能使用“groups”,因为 groups 是 mysql 中的保留关键字。
创建名为“groups”的表时发生以下错误 -mysql> create table groups
−> (
−> id int,
−> name varchar(40)
−> );
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 'groups
(
id int,
name varchar(40)
)' at line 1
为了创建带有保留关键字的表,您需要使用反引号(``)的概念。
让我们创建一个表 -
mysql> create table `groups`
-> (
−> id int,
−> name varchar(40)
−> )
−> ;
Query OK, 0 rows affected (3.08 sec)
使用插入命令将一些记录插入到表中 −
mysql> insert into `groups` values(10,'John');
Query OK, 1 row affected (0.30 sec)
mysql> insert into `groups` values(11,'Bob');
Query OK, 1 row affected (0.32 sec)
mysql> insert into `groups` values(12,'Mike');
Query OK, 1 row affected (0.40 sec)
使用select语句显示表中的记录
mysql> select *from `groups`;
这将产生以下输出 −
+------+------+
| id | name |
+------+------+
| 10 | John |
| 11 | Bob |
| 12 | Mike |
+------+------+
3 rows in set (0.04 sec)
--结束END--
本文标题: 此查询中的 MySQL 语法错误是什么 – 使用保留关键字创建表?
本文链接: https://lsjlt.com/news/437168.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0