================================================
TEST DES REQUÊTES DES EXERCICES
================================================

Test: DISTINCT dept_id
SQL: SELECT DISTINCT dept_id FROM EMPLOYES WHERE dept_id IS NOT NULL ORDER BY dept_id
✅ OK - 3 ligne(s)

Test: Employés dept 60
SQL: SELECT nom, prenom, poste FROM EMPLOYES WHERE dept_id = 60
✅ OK - 3 ligne(s)

Test: Salaire 9000
SQL: SELECT nom, prenom, salaire FROM EMPLOYES WHERE salaire = 9000
✅ OK - 3 ligne(s)

Test: Depts 60 ou 90
SQL: SELECT nom, prenom, dept_id FROM EMPLOYES WHERE dept_id = 60 OR dept_id = 90
✅ OK - 3 ligne(s)

Test: France
SQL: SELECT nom_pays, capitale, population FROM PAYS WHERE pays_code = 'FR'
✅ OK - 3 ligne(s)

Test: Pays >= M
SQL: SELECT nom_pays, capitale FROM PAYS WHERE nom_pays >= 'M' ORDER BY nom_pays
✅ OK - 3 ligne(s)

Test: Pop > 1M
SQL: SELECT nom_pays, population FROM PAYS WHERE population > 1000000 ORDER BY population DESC
✅ OK - 3 ligne(s)

Test: Seattle
SQL: SELECT adresse_rue, code_postal FROM LOCALISATIONS WHERE ville = 'Seattle'
✅ OK - 3 ligne(s)

Test: Dept IT
SQL: SELECT dept_id, manager_id FROM DEPARTEMENTS WHERE dept_nom = 'IT'
✅ OK - 3 ligne(s)

Test: Dept avec localisation
SQL: SELECT dept_nom, localisation_id FROM DEPARTEMENTS WHERE localisation_id IS NOT NULL
✅ OK - 3 ligne(s)

================================================
RÉSUMÉ
================================================
✅ DISTINCT dept_id
✅ Employés dept 60
✅ Salaire 9000
✅ Depts 60 ou 90
✅ France
✅ Pays >= M
✅ Pop > 1M
✅ Seattle
✅ Dept IT
✅ Dept avec localisation

Total: 10 OK, 0 erreurs
================================================
