在列名周围使用反引号可以使您使用特殊字符。让我们首先创建一个表-
mysql> create table DemoTable -> ( -> `Student-Id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> `Student-Name` varchar(100), -> `Student-Age` int -> );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable(`Student-Name`,`Student-Age`) values('Chris',21); mysql> insert into DemoTable(`Student-Name`,`Student-Age`) values('Mike',19); mysql> insert into DemoTable(`Student-Name`,`Student-Age`) values('Bob',18);
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
输出结果
这将产生以下输出-
+------------+--------------+-------------+ | Student-Id | Student-Name | Student-Age | +------------+--------------+-------------+ | 1 | Chris | 21 | | 2 | Mike | 19 | | 3 | Bob | 18 | +------------+--------------+-------------+ 3 rows in set (0.00 sec)