使用MySQL在列名中设置空格?

要在MySQL的列名中设置空格,可以使用反引号的概念。让我们首先创建一个表。以下是查询-

mysql> create table blankSpacesDemo
   -> (
   -> `Student Id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> `Student Full Name` varchar(100)
   -> );

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

mysql> insert into blankSpacesDemo(`Student Full Name`) values('John Smith');

mysql> insert into blankSpacesDemo(`Student Full Name`) values('Carol Taylor');

mysql> insert into blankSpacesDemo(`Student Full Name`) values('David Miller');

以下是使用select语句显示表中所有记录的查询-

mysql> select `Student Id`,`Student Full Name` from blankSpacesDemo;

以下是在列名称“学生全名”中显示空白的输出-

+------------+--------------------+
| Student Id | Student Full Name  |
+------------+--------------------+
| 1          | John Smith         |
| 2          | Carol Taylor       |
| 3          | David Miller       |
+------------+--------------------+
3 rows in set (0.00 sec)