Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 linux 中的水平很低,并尝试在控制台中列出所有数据库(使用 putty)。
这就是我要发送的内容:
> mysql -u root -p > [password] > CREATE DATABASE [dbname] > SHOW DATABASES
这就是回应:
>
这很奇怪,我得到的只是一条新线路作为回应。我如何告诉 linux/mysql 给我更多信息(失败/成功)?
非常感谢!
在行尾添加分号:SHOW DATABASES;
SHOW DATABASES;