From 4ed5281929337368287bd9dd3019881e6fad83cc Mon Sep 17 00:00:00 2001 From: Samir <98545750+Samir221@users.noreply.github.com> Date: Fri, 23 Jan 2026 11:28:36 -0500 Subject: [PATCH] Add placeholders for SQL queries in missions 8-12 --- src/sql/queries.sql | 68 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/sql/queries.sql diff --git a/src/sql/queries.sql b/src/sql/queries.sql new file mode 100644 index 000000000..22ad51a83 --- /dev/null +++ b/src/sql/queries.sql @@ -0,0 +1,68 @@ +-- PLEASE READ THIS BEFORE RUNNING THE EXERCISE + +-- ⚠️ IMPORTANT: This SQL file may crash due to two common issues: comments and missing semicolons. + +-- ✅ Suggestions: +-- 1) Always end each SQL query with a semicolon `;` +-- 2) Ensure comments are well-formed: +-- - Use `--` for single-line comments only +-- - Avoid inline comments after queries +-- - Do not use `/* */` multi-line comments, as they may break execution + +-- ----------------------------------------------- +-- queries.sql +-- Complete each mission by writing your SQL query +-- directly below the corresponding instruction +-- ----------------------------------------------- + +SELECT * FROM regions; +SELECT * FROM species; +SELECT * FROM climate; +SELECT * FROM observations; + + +-- MISSION 1 +-- Your query here; + +-- MISSION 2 +-- Your query here; + + +-- MISSION 3 +-- Your query here; + + +-- MISSION 4 +-- Your query here; + + +-- MISSION 5 +-- Your query here; + + +-- MISSION 6 +-- Your query here; + + +-- MISSION 7 +-- Your query here; + + +-- MISSION 8 +-- Your query here; + + +-- MISSION 9 +-- Your query here; + + +-- MISSION 10 +-- Your query here; + + +-- MISSION 11 +-- Your query here; + + +-- MISSION 12 +-- Your query here;