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;