There used to be a multiplayer space game called Schemaverse that was played by writing sql, but it seems to have gone away. https://schemaverse.com/
Ask HN: Are there any websites for SQL puzzle games?
21–30 of 49 posts
Re: Ask HN: Are there any websites for SQL puzzle games?
#22Re: Ask HN: Are there any websites for SQL puzzle games?
#23CREATE TABLE SQL_GAMES blah blah blah
INSERT INTO SQL_GAMES many invited users blah blah blah
SELECT * FROM SQL_GAMES WHERE users are having fun blah blah blah
PROFIT blah blah blah
ENJOY even more blah
-- TODO: drastically restructure above schema and SQL statements to make more sense blah blah blah
-- there's your game blah blah blah
Re: Ask HN: Are there any websites for SQL puzzle games?
#24UPDATE POSTS SET VOTE_COUNT = VOTE_COUNT + 1 WHERE POST_ID = CURRENT_POST_ID(); CREATE TABLE SQL_GAMES blah blah blah INSERT INTO SQL_GAMES many invited users blah blah blah SELECT * FROM SQL_GAMES WHERE users are having fun blah blah blah PROFIT blah blah blah ENJOY even more blah -- TODO: drastically restructure above schema and SQL statements to make more sense blah blah blah -- there's your game blah blah blah
Re: Ask HN: Are there any websites for SQL puzzle games?
#25Not a game but a great way to learn SQL is https://sqlbolt.com
Re: Ask HN: Are there any websites for SQL puzzle games?
#26www.sql-ex.ru + the book on that site are by far the best SQL exercises I have seen. PS. I know you asking about just RAW SQL, but I highly suggest you get into understanding how particular DBMS works in depth, what plans it builds, what concurrency mechanisms it uses. Writing raw SQL will get you only so far, making those queries actually production ready is completely different ballgame and for that, you don't need…
Re: Ask HN: Are there any websites for SQL puzzle games?
#27Remember that the local single-user databases SQLite and DuckDB exist, and that you can use them to wrangle data without even having to set up a separate server. You just create a database file on your machine and go from there.
Re: Ask HN: Are there any websites for SQL puzzle games?
#28I’ve had fun going through SQL Murder Mystery ( https://mystery.knightlab.com/ ) I even use it for hiring exercises.
Re: Ask HN: Are there any websites for SQL puzzle games?
#29Re: Ask HN: Are there any websites for SQL puzzle games?
#30At beginner level, there is SQL Island https://sql-island.informatik.uni-kl.de , with versions in German, English and French.