查看添加数据库的时候报这种错事怎么回事?
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 'DATABASE t1' at line 1
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 'DATABASE t1' at line 1
2016-04-13
添加删除都没问题,就是查看的时候报错,
mysql> create database t1;
Query OK, 1 row affected (0.00 sec)
mysql> show database;
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 'database' at line 1
mysql> drop database t1;
Query OK, 0 rows affected (0.00 sec)
mysql>
举报