mysql 5.0 的 GUI 工具

发布于 2024-09-30 01:43:20 字数 116 浏览 2 评论 0原文

他们是否有适用于 MySQL 的 GUI 界面,如 Microsoft SQL Server 2005 Server Management Studio 提供的那样?因为基本上我都是通过命令提示符界面来操作MySQL。

Is their any GUI-interface for MySQL, like Microsoft SQL Server 2005 Server Management Studio provides? Because basically I am operating MySQL with command prompt interface.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(10

我不是你的备胎 2024-10-07 01:43:20

phpMyAdmin 对于简单的目的来说应该足够了。如果没有,您可以使用 MySQL Workbench 软件包,或者搜索商业工具(如果没有)喜欢它。

phpMyAdmin should be enough for simple purposes. If not, you can use the MySQL Workbench package or search for commercial tools if you don't like it.

陪你到最终 2024-10-07 01:43:20

曾经有 MySQL Administrator 和 MySQL Query Browser,但不再受支持。

客户端

服务器端

  • PHPMyAdmin 对于缺乏经验的用户来说非常友好,但经验丰富的用户并不总是喜欢它。

There used to be MySQL Administrator and MySQL Query Browser, but those are not supported anymore.

Clientside

Serverside

  • PHPMyAdmin is pretty friendly for inexperiences users, but more experiences users don't always like it.
心的位置 2024-10-07 01:43:20

我使用了 SQLYOG
您可以从以下位置下载社区版(免费):

http://code.google.com /p/sqlyog/downloads/list

在此处输入图像描述

i used SQLYOG,
you can download the Community edition (free) from :

http://code.google.com/p/sqlyog/downloads/list

enter image description here

鸠魁 2024-10-07 01:43:20

我喜欢 Navicat 或 MySQL GUI 工具

I like Navicat or MySQL GUI tools

音栖息无 2024-10-07 01:43:20

我尝试了 3 个不同的 MySQL GUI 客户端。

IMO,HeidiSQL 比其他两个有更好的 GUI 和更多有用的功能。

在 HeidiSQL 中,您可以使用 Ctrl+Space 进行自动完成(就像 Eclipse IDE 一样)。例如,您可以开始键入

SELECT * FROM st

Ctrl+Space,它将打开一个弹出窗口,显示所选数据库中以“st”开头的所有表名称,您可以从中选择表。

您还可以使用表别名并使用自动完成列名。例如,

SELECT * FROM students s WHERE s.

然后键入 Ctrl+Space,它将列出“学生”表中的所有列。我在 MySQL Workbench 和 SQLyog 社区版中找不到这个自动完成功能。

HeidiSQL(和 SQLyog)的另一个很酷的功能是,如果单击“数据”选项卡,您可以浏览表中的行。否则,您将必须键入

SELECT * FROM <tablename>

,如果表很大并且您忘记添加 LIMIT 子句,则可能需要很长时间才能运行。 HeidiSQL自动将行数限制为1000。此外,在浏览数据时,您可以添加过滤器(相当于WHERE子句)和排序选项(相当于ORDER BY子句)。

HeidiSQL 所没有的一项功能是 SQLyog 所具有的功能,即在您键入 SQL 语句时自动将 SQL 关键字大写。

I have tried 3 different MySQL GUI clients.

IMO, HeidiSQL has a nicer GUI and more useful features than the other two.

In HeidiSQL you can use Ctrl+Space for auto-complete (just like Eclipse IDE). For example, you can start typing

SELECT * FROM st

then Ctrl+Space and it will open a pop-up displaying all table names in the selected DB that start with 'st' from which you can select the table.

You can also use table aliases and use auto-complete for column names. For example,

SELECT * FROM students s WHERE s.

and then type Ctrl+Space and it will list all the columns in the 'students' table. I could not find this auto-complete feature in MySQL workbench and SQLyog community edition.

Another cool HeidiSQL (and SQLyog) feature is you can browse the rows in a table if you click on the "data" tab. Otherwise you would have to type

SELECT * FROM <tablename>

and if the table is large and you forget to add LIMIT clause, this may take long to run. HeidiSQL automatically limits the number of rows to 1000. Also, when browsing data, you can add filters (equivalent of WHERE clause) and sort options (equivalent of ORDER BY clause).

The one feature that HeidiSQL does not have which SQLyog has is automatic SQL keyword upper-casing as you type your SQL statements.

白首有我共你 2024-10-07 01:43:20

SQLyog企业版可以用于使用mysql,但它不是免费的。

SQLyog enterprise edition can be used for using mysql but it is not free.

尾戒 2024-10-07 01:43:20

我认为 dbForge Studio for MySQL 最像 SQL Server Management Studio:http://www.devart。 com/dbforge/mysql/studio/

I think dbForge Studio for MySQL is most like SQL Server Management Studio: http://www.devart.com/dbforge/mysql/studio/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文