Remix.run Logo
Free SQL→ER diagram tool, runs in the browser, nothing uploaded(sqltoerdiagram.com)
200 points by robhati 8 hours ago | 36 comments
osrec 8 minutes ago | parent | next [-]

Have only had a quick look at it, but it looks very nicely done! Out of interest, did you use AI to assist with development? If yes, what percentage of the code would you say is AI generated vs conventional?

hoofedear 9 minutes ago | parent | prev | next [-]

This is cool! I made something similar a little while ago that I’ve been touching up here and there. You can’t export to any SQL but I just wanted a tool I can use to diagram tables: https://datagram.studio

michaelmior an hour ago | parent | prev | next [-]

The tool looks very cool! But IMO you can't get an ER diagram from SQL since entities are fundamentally different from tables. They are certainly very similar, but SQL alone doesn't give you enough information to create an ER diagram.

That's not to say that the tool is useless or that diagrams of this sort are unhelpful. I'll admit I'm being pedantic and others will probably disagree.

ezst an hour ago | parent [-]

> entities are fundamentally different from tables

Isn't the fact that they are _mostly_ interchangeable the foundational principle of hundreds of ORMs? Of course the DDL doesn't say much about the entity's lifecycle, but if the bar is set at representing its relationships, fields and cardinality as a graph, it seems sufficient?

written-beyond 6 hours ago | parent | prev | next [-]

100/10 for mobile usability. Panning, Zooming, selecting and moving was so seamless I thought I was tripping out.

lelanthran 5 hours ago | parent | next [-]

> 100/10 for mobile usability. Panning, Zooming, selecting and moving was so seamless I thought I was tripping out.

Yeah, my first thought was that the diagramming bit needs to be ripped out into its own library, because I can see a use for the diagramming bits for more than ER diagrams.

CraigJPerry 3 hours ago | parent | prev | next [-]

The whole code base is a breath of fresh air to be honest: https://github.com/royalbhati/sqltoerdiagram/blob/main/src/m...

Author is top notch in my book. I'm a sucker for someone taking a complex problem and distilling out a simple solution. I don't know of higher praise to give a developer.

Galanwe 6 hours ago | parent | prev [-]

That's really good yes, even double tapping editing does not reset the zoom level. Definitely one of the best mobile friendly site I have seen.

sixtyj 5 hours ago | parent [-]

This. Author(s) did the homework.

swatiahuja 5 minutes ago | parent | prev | next [-]

good work, I was really in need of something like this to visualise my schemas

robhati 7 hours ago | parent | prev | next [-]

It's a small too nothing great I just figured others might find it useful too. I kept finding myself needing to visualize database schemas, but most tools had the same problems: paywalls, mandatory signups, or sending your SQL to someone else's server.

No backend, no accounts, no data leaving your machine.

A few implementation details that were fun:

* Built on <canvas> instead of DOM/SVG. Tables are rasterized into cached bitmaps with viewport culling, which keeps things smooth even with hundreds of tables on screen.

* The SQL parser tracks source spans for every token. That lets edits stay surgical so a rename a table and only the relevant identifier (and its references) change while comments and formatting remain untouched.

* The URL contains the entire schema. Sharing simply serializes the schema into the URL itself, so there's no backend, no stored state, and no account required.

* I also experimented with a Rust/WASM version because why not? but the parser was ~37% slower because the JS↔WASM boundary cost outweighed the compute savings but The O(n^2) overlap-resolution pass was about 2.2x faster though * In the end I stuck with plain JavaScript. No framework ~32KB gzipped

Hendrikto 3 hours ago | parent | next [-]

> The URL contains the entire schema.

Isn’t that going to be a problem due to the URL length limitations?

> It is RECOMMENDED that all senders and recipients support, at a minimum, URIs with lengths of 8000 octets in protocol elements.

https://www.rfc-editor.org/rfc/rfc9110#section-4.1-5

johndough 2 hours ago | parent [-]

Probably not that important in practice. Firefox allows 2^20 - 4 and Chrome allows 2100000 characters. Also, 8000 characters already allows for an unreasonable amount of SQL and could be extended even further with compression. And if that should not be enough, the website already supports JSON exports. All in all, this seems like a worthwhile tradeoff for not having to store anything.

__natty__ 4 hours ago | parent | prev [-]

Truely good work! It’s responsive, clean and “onboarding” experience without signup walls is great. Good job.

corkybeta 6 hours ago | parent | prev | next [-]

Could we have the option of straight lines and 90 degree angles? I’ve never really liked the bendy ones. Looks cool, good job!

robhati 4 hours ago | parent [-]

Thanks and I will add this to my todos!

ffsm8 3 hours ago | parent [-]

A few years ago I created a similar layout engine, it was extremely janky when I abandoned it because I first wanted to solve order/placing of the tiles but was unable to figure out a good algorithm for it

Eg your example diagram has an optimal order in which there are no overlapping lines... But it's surprisingly hard to figure that out without doing n^m calculations... And I wanted to use it in a game, so a shitton of tiles.

Dunno where I was going with this, just got reminded of that project after looking at this great implementation.

It also reminded me of the xyflow lib

johndough 3 hours ago | parent [-]

In academia, this is called "planar embedding" and can be computed in O(V) where V is the number of vertices of the graph.

However, there are graphs that do not allow planar embeddings (e.g. K_5 or K_3,3, see https://en.wikipedia.org/wiki/Planar_graph).

In this case, you'll probably want to look into heuristics that produce a low number of crossings and little distortion when new vertices are added.

Igor_Wiwi 2 hours ago | parent | prev | next [-]

btw did you know that ER diagrams are supported by Mermaid diagrams: https://mdview.io/mermaid?example=working-er It's not that pretty as in your app, but it does the work

ktzar 3 hours ago | parent | prev | next [-]

Such an old problem solved very elegantly. Congrats. Remember the days of MySQL Workbench and how clunky it was.

Alifatisk an hour ago | parent | next [-]

> Remember the days of MySQL Workbench and how clunky it was

I loved MySQL Workbench, but it had its faults. Is there any equivalent alternative today? I've dreamed about an app that fuses MySQL Workbench + real-time collaboration, so I can share the same workspace with others in the team and see what others are are up to and collaborate on things.

graemep 2 hours ago | parent | prev [-]

DBeaver does a good job of this and works with most databases. I would not use MySQL Workbench or PGAAdmin now.

This might be a good implementation but is it not easier to use something that can connect to your database than having to copy and paste chunks of SQL?

clutter55561 an hour ago | parent | prev | next [-]

Great stuff, well done and super useful!

WhyIsItAlwaysHN 5 hours ago | parent | prev | next [-]

Maybe you can support schemas in more dialects by using a similar approach to a little tool I made: sqlscope.netlify.app

Basically integrate sqlglot to translate the schema between dialects and then use a base dialect for generating the schema.

The two tools seem complementary and you seem to be a better designer, so it would be nice to see it all together

rognjen 4 hours ago | parent | prev | next [-]

There's also Azimutt: https://azimutt.app/gallery

wateralien an hour ago | parent [-]

You have linked to a paid, closed-source product. There are hundreds. OP has shared a free and open-source project.

henryecw an hour ago | parent | prev | next [-]

Looks great, I’ll use this next week :p

agentic_vector 6 hours ago | parent | prev | next [-]

I was looking for it, thanks! Great work!

_f1ou 7 hours ago | parent | prev | next [-]

The GitHub link takes you to the front page of GitHub instead of the actual project.

serious_angel 7 hours ago | parent | next [-]

   Just to clarify, what link is it?  
   I've check it out, and the GitHub icon, in the header on the top right corner, is correct, and links to the following project:  
   - https://github.com/royalbhati/sqltoerdiagram
robhati 7 hours ago | parent [-]

I have just updated it. He was right to point that out.

robhati 7 hours ago | parent | prev [-]

updated thanks.

linzhangrun 2 hours ago | parent | prev | next [-]

nice!

John_Kwick 6 hours ago | parent | prev | next [-]

Okay thats pretty cool. Nice job!

robhati 8 hours ago | parent | prev [-]

I kept finding myself needing to visualize database schemas, but most tools had the same problems: paywalls, mandatory signups, or sending your SQL to someone else's server.

So I ended up building my own.

You paste in your CREATE TABLE statements and it generates an interactive ER diagram right in the browser. You can drag tables around, auto arrange the layout, edit table/column names directly on the canvas (it rewrites the SQL for you), add notes and group boxes, and export as PNG or SVG.

No backend, no accounts, no data leaving your machine.

A few implementation details that were fun:

* Built on <canvas> instead of DOM/SVG. Tables are rasterized into cached bitmaps with viewport culling, which keeps things smooth even with hundreds of tables on screen.

* The SQL parser tracks source spans for every token. That lets edits stay surgical so a rename a table and only the relevant identifier (and its references) change while comments and formatting remain untouched.

* The URL contains the entire schema. Sharing simply serializes the schema into the URL itself, so there's no backend, no stored state, and no account required.

* I also experimented with a Rust/WASM version because why not? but the parser was ~37% slower because the JS↔WASM boundary cost outweighed the compute savings but The O(n^2) overlap-resolution pass was about 2.2x faster though * In the end I stuck with plain JavaScript. No framework ~32KB gzipped

It's a small too nothing great I just figured others might find it useful too.

dickiedyce 3 hours ago | parent [-]

Small? Yes, but perfectly formed!

(Only minor tweak one could suggest would be multiple table selection for dragging... but to quote Frasier: "Think about it, Niles. What's the one thing better than an exquisite meal? An exquisite meal, with one tiny flaw we can pick at all night." Niles, raising a glass: "Ah, of course, to impossible standards.")