At beginner level, there is SQL Island https://sql-island.informatik.uni-kl.de , with versions in German, English and French.
Where is the English language version? Would love to use with my son!
Ask HN: Are there any websites for SQL puzzle games?
31–40 of 49 posts
Re: Ask HN: Are there any websites for SQL puzzle games?
#32Re: Ask HN: Are there any websites for SQL puzzle games?
#33Others have given you excellent suggestions; I will simply offer an addition -- a side quest, if you will: Remember 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?
#34It's not SQL directly (it's the Kusto query language) which is more geared towards reading data and analytics.
I'm suggesting it however because the queries in it are also basically relational algebra (aka much of the knowledge is transferable to SQL - minus some special features like anomaly analysis), they give decently sized datasets with billions of rows and the challenges themselves were fun.
Re: Ask HN: Are there any websites for SQL puzzle games?
#35Re: Ask HN: Are there any websites for SQL puzzle games?
#36Others have given you excellent suggestions; I will simply offer an addition -- a side quest, if you will: Remember 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?
#37Others have given you excellent suggestions; I will simply offer an addition -- a side quest, if you will: Remember 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.
There's also nothing stopping you from running postgres, sql server, MySQL etc locally.
Re: Ask HN: Are there any websites for SQL puzzle games?
#38Earlier quoted context omitted.
There's also nothing stopping you from running postgres, sql server, MySQL etc locally.
Postgres running local has good ROI. You can reuse that knowledge on a remote server. More than SQL you can learn about setting up databases and schemas etc.
I'm familiar with MySQL/MariaDB, but have no experience with Postgres.
Re: Ask HN: Are there any websites for SQL puzzle games?
#39Earlier quoted context omitted.
Postgres running local has good ROI. You can reuse that knowledge on a remote server. More than SQL you can learn about setting up databases and schemas etc.
Can you recommend any good book/resource to pick up PostgreSQL? I'm familiar with MySQL/MariaDB, but have no experience with Postgres.
Re: Ask HN: Are there any websites for SQL puzzle games?
#40I teach uni. couses on databases and made the game for my student to give them a more self-driven way to learn SQL.