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)
以上がMySQLを使用してカラム名にスペースを設定しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。