56,866
社区成员




mysql> create table 37e77d189af09d5d480ca0e3e2058ce7 (name varchar(20));
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 '37e77d189af09d5d480ca0e3e2058ce7 (name varchar(20))' at line 1
mysql> create table `37e77d189af09d5d480ca0e3e2058ce7` (name varchar(20));
Query OK, 0 rows affected (0.02 sec)
mysql> insert into 37e77d189af09d5d480ca0e3e2058ce7 select 'a';
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 '37e77d189af09d5d480ca0e3e2058ce7 select 'a'' at line 1
mysql> insert into `37e77d189af09d5d480ca0e3e2058ce7` select 'a';
Query OK, 1 row affected (0.01 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> select * from 37e77d189af09d5d480ca0e3e2058ce7;
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 '37e77d189af09d5d480ca0e3e2058ce7' at line 1
mysql> select * from `37e77d189af09d5d480ca0e3e2058ce7`;
+------+
| name |
+------+
| a |
+------+
1 row in set (0.01 sec)
mysql>