无法通过终端看到我在Workbench上创建的MySQL数据库,使用”SHOW DATABASES”命令。

huangapple go评论74阅读模式
英文:

Can't see MySQL database from terminal that I created on Workbench using "SHOW DATABASES"

问题

我最近在我的MacOs上下载了MySQL社区版和MySQL Workbench。我在Workbench上创建了数据库,可以进行更新和操作。

但是,当我尝试在终端中运行例如SHOW DATABASES时,我无法看到我使用Workbench创建的数据库。

所有命令在MySQL Workbench中都能正常运行。

但与此同时,我无法看到我使用Workbench创建的任何数据库。

这不是我的截图,但我希望能够获得类似的输出。

英文:

I have recently downloaded MySQL community and MySQL workbench on my MacOs.
I created database on workbench and I am able to do updates and work there.

But when I try to do for ex: "SHOW DATABASES from terminal I am not able to see the databases I have created using workbench

All the commands are working and are fine here in MySQL workbench

无法通过终端看到我在Workbench上创建的MySQL数据库,使用”SHOW DATABASES”命令。

But at the same time, I am unable to see any of my databases that i created using workbench

无法通过终端看到我在Workbench上创建的MySQL数据库,使用”SHOW DATABASES”命令。

This is not mine, but I expect to get similar output.

无法通过终端看到我在Workbench上创建的MySQL数据库,使用”SHOW DATABASES”命令。

答案1

得分: 2

使用 show databases; 而不是 show databases。MySQL 使用 ; 来表示语句的结束,因此在语句之后需要添加 ;。在终端中使用时,你遗漏了 ;

英文:

Use show databases; rather than show databases. MySQL uses ; to indicate the end of a statement, so you need to add ; after a statement. You lost the ; while using terminal.

huangapple
  • 本文由 发表于 2023年7月10日 14:51:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/76651307.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定