离线 MySQL 表定义生成器

发布于 2024-07-25 13:25:30 字数 262 浏览 14 评论 0原文

我正在寻找类似于 phpmyadmin 中的表创建表单的内容,但它应该只是在表单下方的文本区域中显示 CREATE TABLE 语句。
它也不应该需要 MySQL、PHP 甚至服务器来工作。

我在处理项目时需要这个,只是想快速创建一个表定义。 我很可能总是打开一个文本编辑器,因此能够保存到文件并不是必须的。

我使用 Ubuntu 并使用 Gnome。 一个可以放在“应用程序”菜单中的小型 GTK 应用程序将是理想的选择。

I'm looking for something similar to the table creation form from phpmyadmin, but it should simply display a CREATE TABLE statement in a textarea below the form.
It should also not require MySQL, PHP, or even a server to work.

I want this for times I'm working on projects and just want to whip up a quick table definition. I'll more than likely always have a text editor open, so being able to save to file isn't a must-have.

I'm on Ubuntu and use Gnome. A tiny GTK application I could stick in my Applications menu would be ideal.

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

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

发布评论

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

评论(2

你是年少的欢喜 2024-08-01 13:25:30

足够熟悉在文本编辑器中删除表定义成为第二天性的语法并不困难。

不过,请查看 DBDesigner4,它是一个 GPL 应用程序,可能对您有用。

It's not that hard to get familiar enough with the syntax that knocking out a table definition in a text editor becomes second nature.

However, check out DBDesigner4, which is a GPL application which might be useful to you.

标点 2024-08-01 13:25:30

使用 MySQL 工作台:http://dev.mysql.com/downloads/workbench/5.0。下载

  • 并安装它。
  • 要看到您想要的屏幕,您必须先在“打开连接以开始查询”下打开一个连接。
  • 输入您的 root 密码(如果您的连接是针对其他用户的,则输入其他密码)。
  • 然后您的 SQL 编辑器应该立即打开。
  • 从左列的“架构”下,打开数据库,
  • 然后右键单击“表”。
  • 选择“创建表”。

Use the MySQL Workbench: http://dev.mysql.com/downloads/workbench/5.0.html

  • Download and install it.
  • To see the screen you want, you have to open a connection first under "Open Connection to Start Querying".
  • Enter your root password (or other, if your connection is for another user).
  • Then your SQL Editor should immediately open.
  • From the left column, under 'schemas', open your database,
  • then right-click on 'Tables'.
  • Select 'Create Table.'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文