From c4cd9edb02731820b7d89b4eb19a4918146827d9 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Fri, 6 Sep 2024 10:10:32 +0200 Subject: [PATCH] add a link to sqliteonline.com to test database schemas --- examples/official-site/your-first-sql-website/tutorial.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/official-site/your-first-sql-website/tutorial.md b/examples/official-site/your-first-sql-website/tutorial.md index 4fe072b1..3c640ed0 100644 --- a/examples/official-site/your-first-sql-website/tutorial.md +++ b/examples/official-site/your-first-sql-website/tutorial.md @@ -54,6 +54,9 @@ CREATE TABLE users ( ); ``` +If you need to quickly test a database schema and associated queries online, +before making any change to your database, I can recommend [sqliteonline.com](https://sqliteonline.com/) (which actually also works with Postgres, MySQL, and SQL Server). + Please read our [**introduction to database migrations**](./migrations.sql) to learn how to maintain your database schema in the long term.