前言
在当今数据驱动的时代,数据库设计已成为开发者和数据分析师必备的一项核心技能。今天大姚给大家分享一款免费、简单、高效的在线数据库设计工具:dbdiagram。
工具介绍
dbdiagram 是一款免费、简单、高效的在线图形化数据库设计工具,专为开发者和数据分析师设计。它可以通过输入 DSL(领域特定语言)代码来快速绘制数据库 ER 图。支持 MySQL、PostgreSQL、SQL Server 等多种数据库,支持 SQL 导入与导出(导出为 PDF/PNG/SVG)。
工具特点
- 支持从 SQL 转储文件快速生成图表。
- 支持一键将你的图表分享给同事和客户。
- 支持直接生成创建数据库表的 SQL 语句。
- 支持输入 DSL 代码来绘制数据库图表(ERDs)。
- 支持 MySQL、PostgreSQL、SQL Server 等多种数据库。
在线使用
- 在线文档:https://dbdiagram.io/home
- 在线使用地址:https://dbdiagram.io/d
- Table follows {
- following_user_id integer
- followed_user_id integer
- created_at timestamp
- }
- Table users {
- id integer [primary key]
- username varchar
- role varchar
- created_at timestamp
- }
- Table posts {
- id integer [primary key]
- title varchar
- body text [note: 'Content of the post']
- user_id integer [not null]
- status varchar
- created_at timestamp
- }
- Ref user_posts: posts.user_id > users.id // many-to-one
- Ref: users.id < follows.following_user_id
- Ref: users.id < follows.followed_user_id
复制代码
更多数据库设计工具
该款实用工具已收录至 Awesome Tools,程序员常用高效实用工具、软件资源精选,办公效率提升利器。
- Gitee:https://gitee.com/ysgdaydayup/Awesome-Tools
- GitHub:https://github.com/YSGStudyHards/Awesome-Tools
来源:程序园用户自行投稿发布,如果侵权,请联系站长删除
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |