Chess in SQL (dbpro.app)

171 points by upmostly 3 days ago

42 comments:

by upmostly 3 days ago

Author here.

I had the idea of building a working Chess game using purely SQL.

The chess framing is a bit of a trojan horse, honestly. The actual point is that SQL can represent any stateful 2D grid. Calendars, heatmaps, seating plans, game of life. The schema is always the same: two coordinate columns and a value. The pivot query doesn't change.

A few people have asked why not just use a 64-char string or an array type. You could! But you lose all the relational goodness: joins, aggregations, filtering by piece type. SELECT COUNT(*) FROM board WHERE piece = '♙' just works.

by andersmurphy 3 hours ago

Yup. Works even better with R*Trees[1]. Great article btw!

- [1] https://www.sqlite.org/rtree.html

by jollygoodshow 12 hours ago

Great showcase. Cool to see how any 2d state can be presented with enough work.

Just FYI your statement for the checkmate state in the opera game appears to be incorrect

by upmostly 12 hours ago

Thank you, and thanks for highlighting that. I'll take a look now.

by andoando 13 hours ago

Technically you can model anything in SQL including execution of any Turing complete language

by eru 11 hours ago

Yes, but OP wants to preserve the relational goodness.

by eastbound 14 hours ago

SQL can make 2D data, but it extremely bad at it. It’s a good opportunity to wonder whether this part can be improved.

“Pivot tables”: I often have a list of dates, then categories that I want to become columns. SQL can’t do that so there is a technique of spreading values to each column then doing a MAX of each value per date. It is clumsy and verbose but works perfectly… as long as categories are known in advance and fixed. There should be an SQL instruction to pivot those rows into columns.

Example: SELECT date, category, metric; -- I want to show 1 row per date only, with each category as a column.

``` SELECT date,

MAX( CASE category WHEN ‘page_hits’ THEN metric END ) as “Page Hits”,

MAX( CASE category WHEN ‘user_count’ THEN metric END ) as “User Count”

GROUP BY date;

^ Without MAX and GROUP BY: 2026-03-30 Value1 NULL 2026-03-30 NULL Value2 2026-03-31 Value1 NULL (etc) The MAX just merges all rows of the same date. ```

SQL should just have an instruction like: SELECT date, PIVOT(category, metric); to display as many columns as categories.

This thought should be extended for more than 2 dimensions.

by tn1 13 hours ago

DuckDB and Microsoft Access (!) have a PIVOT keyword (possibly others too). The latter is of course limited but the former is pretty robust - I've been able to use it for all I've needed.

by amichal 9 hours ago

PostgresSQL

"crosstab ( source_sql text, category_sql text ) → setof record"

https://www.postgresql.org/docs/current/tablefunc.html

VIA https://www.beekeeperstudio.io/blog/how-to-pivot-in-postgres... as a current googlable reference/guide

by andersmurphy 3 hours ago

> SQL can make 2D data, but it extremely bad at it. It’s a good opportunity to wonder whether this part can be improved.

R*Trees are what you are looking for. The sqlite implementation supports up to 5 dimensions.

by mwigdahl 4 hours ago

Can you comment on whether you wrote the article yourself or used an LLM for it? To me it reads human (in a maybe slightly overly-punchy, LinkedIn-esque way), but a lot of folks are keying on the choppiness and exclusion chains and concluding it's AI-written.

I'm interested in whether others are oversensitive or I'm not sensitive enough... :)

by slopinthebag 4 hours ago

They definitely used an LLM for it

by temporallobe 33 minutes ago

Impressive! Incidentally, I built my own Chess game from scratch pretty recently, using nothing but my own knowledge of the game rules and I am seeing some of the same patterns emerge, though I used plain data structures instead of tables. It’s always interesting to see different ways of solving the same problem, especially with inappropriate/inadequate tools. It’s kind of like figuring out how to make pizza without a proper oven.

by Beestie 6 hours ago

Fascinating idea. Since the board starting position never changes, I'd skip the initial table and pivot and just go straight to loading an 8x8 grid with the pieces. I would also make a table of the 6 piece types and movement parameters. So, for ex, the bishop move restriction is dX=dY, the rook (dXdY=0), knight (dXdY=2), etc. Then a child table to record for each piece, the changes in X,Y throughout the game (so the current position of any piece is X = (Xstart + SUM(dX)) & Y = (Ystart + SUM(dY)) and a column to show if the piece was captured. Any proposed "move" (e.g., 3 squares up) would be evaluated against the move restrictions, the current location of the piece and whether or not the move will either land on an empty square, an opponent piece or gulp off the board and either allow or disallow it.

I'm still working on an idea to have a "state" check to know when checkmate happens but that's gonna take a wee bit more time.

But, the idea is very novel and very thought provoking and has provided me with a refreshing distraction from the boring problem I was working on before seeing your post.

by eelinki 14 hours ago

You could take this even further and add triggers to see if your move is legal or not. Or delete row with a conflict when you capture a piece.

by bob1029 5 hours ago

This is getting dangerously close to how some AAA MMORPGs handle[d] much of their logic and state management.

At the scales these games operate, enterprisey oracle clusters start to look like a pretty good solution if you don't already have some custom tech stack that perfectly solves the problem.

by upmostly 4 hours ago

Interesting. I'm a big fan of MMORPGs so hearing that this is how they were made is really cool.

I've always wondered what kind of stack games like EverQuest were built on.

by ctippett 3 hours ago

I started playing World of Warcraft at the same time I was studying database systems at university and had a similar curiosity. Twenty years later the AzerothCore project pretty much satisfies this curiosity, they've done an incredible job reverse engineering the game server and its database.

https://www.azerothcore.org/wiki/database-world

by vakrdotme 2 hours ago

That’s fascinating. I didn’t realize the WoW server was so database heavy. do you know if the original game logic was implemented mostly in stored procedures, or was it just used for persistence and the engine handled the rules elsewhere?

by ctippett 2 hours ago

I don't know I'm sorry. I'm not involved in the project, just a curious bystander!

by davis 3 hours ago

Do you have a source? Curious to learn more about this

by antonautz 10 hours ago

Nice post! It looks like the colors of the pieces are swapped though. Perhaps you could replace the dots with something else to indicate the colors of the individual squares too.

by jimgoneill 14 hours ago

And they didn’t call it ChessQL?

by upmostly 12 hours ago

I thought about it, but, not surprisingly, that already exists.

https://pypi.org/project/chessql/

by dorianmariecom an hour ago

doom in sql when? (real doom)

by herodoturtle 8 hours ago

This is such a cool way to build brand awareness - kudos to the author.

I'd never heard of dbpro.app until now - and this article is just so awesome.

Nice job!

by upmostly 2 hours ago

Thank you! That means a lot.

by danielszlaski 12 hours ago

Nice. The trojan horse framing works well, once you see that any 2D state is just coordinates + a value, it’s hard to unsee it. Did you consider using this to enforce move legality via CHECK constraints or triggers, or did that get too hairy?

by cat-whisperer 3 hours ago

can someone do DOOM in sql?

by evnc 3 hours ago

Someone has done a ray tracer in DuckDB, so essentially, yes: https://simonwillison.net/2025/Apr/22/duckdb-wasm-doom/

by PhishClean an hour ago

Great idea. Appreciate your efforts

by grimm8080 14 hours ago

Amazing, how do I play it?

by OfirMarom 12 hours ago

Of all the use cases for SQL chess would not have been on that list haha. Amazing.

by landsman 14 hours ago

Tool looks nice, but I would prefer such a tool written in a better (native?) language than JavaScript. Security is also important to me, so I only use open-source tools. I’m going to stick with DBeaver and DataGrip.

by hahooh 5 hours ago

I had no idea SQL could do something like this lol

by bob1029 5 hours ago

SQL can do anything as of recursive CTEs and application-defined functions with side-effects. Performance and ergonomics are the only remaining concerns.

by devlx 9 hours ago

Very cool concept

by FergusArgyll 14 hours ago

Very cool! I think the dragon is missing a white rook - ascii chess pieces are heard to see...

by The_Blade 7 hours ago

very cool, you got the classic games as well :)

i once published a "translation" of the Opera Game (chess annotation as a literary device) after reading too much Lautremont so it is disgusting

by catlifeonmars 12 hours ago

> No JavaScript. No frameworks. Just SQL.

> Let's build it.

Cool concept; but every blog post sounds exactly the same nowadays. I mean it’s like they are all written by the exact same person /s

by mahogany 7 hours ago

The web was already not doing so well, but now I fear LLMs will be the final blow for me. This sort of thing is just unreadable. I don't see how people put up with it. Well, maybe not "people". This thread is full of new accounts saying "cool!". Unfortunately I think HN is on its way out.

by streetfighter64 8 hours ago

Yeah, I wish this would have just been a short human-written post of a few paragraphs. The emdashes, bulletpoints and unnecessary dramatic flourishes really detract from it.

> Not "store chess moves in a database." Not "track game state in a table." Actually render a chess board. With pieces. That you can move around. In your browser. Using nothing but SELECT, UPDATE, and a bit of creative thinking.

Please, just write like a person.

Data from: Hacker News, provided by Hacker News (unofficial) API