必須提前安裝Mysql
mysql> show databases
? ? -> show databases;
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 'show databases' at line 2
mysql> show databases
? ? -> show databases;
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 'show databases' at line 2
2018-09-26
舉報(bào)
2019-12-21
mysql的命令以分號結(jié)尾,回車不算結(jié)尾,所以你實(shí)際執(zhí)行的命令是show databasesshow databases;
解決方法,直接輸show databases;(注意有分號)即可