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

mysqlmysqli database

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

mysql> create table blankSpacesDemo
   -> (
   -> `Student Id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> `Student Full Name` varchar(100)
   -> );
Query OK, 0 rows affected (0.51 sec)

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

mysql> insert into blankSpacesDemo(`Student Full Name`) values('John Smith');
Query OK, 1 row affected (0.16 sec)

mysql> insert into blankSpacesDemo(`Student Full Name`) values('Carol Taylor');
Query OK, 1 row affected (0.14 sec)

mysql> insert into blankSpacesDemo(`Student Full Name`) values('David Miller');
Query OK, 1 row affected (0.15 sec)

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

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

以下是在列名"Student Full Name"中显示空白的输出 −

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

相关文章