| 1 |
0.44 ms |
SELECT t0.id AS id_1, t0.nom AS nom_2, t0.slug AS slug_3, t0.couleur AS couleur_4, t0.icone AS icone_5 FROM matiere t0 WHERE t0.slug = ? LIMIT 1
Parameters: [
"allemand"
]
SELECT t0.id AS id_1, t0.nom AS nom_2, t0.slug AS slug_3, t0.couleur AS couleur_4, t0.icone AS icone_5 FROM matiere t0 WHERE t0.slug = 'allemand' LIMIT 1;
|
| 2 |
0.37 ms |
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.statut AS statut_5, t0.matiere_id AS matiere_id_6, t0.niveau_id AS niveau_id_7 FROM chapitre t0 WHERE t0.slug = ? AND t0.matiere_id = ? LIMIT 1
Parameters: [
"le-present-praesens"
21
]
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.statut AS statut_5, t0.matiere_id AS matiere_id_6, t0.niveau_id AS niveau_id_7 FROM chapitre t0 WHERE t0.slug = 'le-present-praesens' AND t0.matiere_id = 21 LIMIT 1;
|
| 3 |
0.34 ms |
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.contenu AS contenu_5, t0.resume AS resume_6, t0.exercices AS exercices_7, t0.statut AS statut_8, t0.prompt_utilise AS prompt_utilise_9, t0.modele_ia AS modele_ia_10, t0.date_generation AS date_generation_11, t0.chapitre_id AS chapitre_id_12 FROM cours t0 WHERE t0.slug = ? AND t0.chapitre_id = ? LIMIT 1
Parameters: [
"conjugaison-verbes-reguliers"
28
]
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.contenu AS contenu_5, t0.resume AS resume_6, t0.exercices AS exercices_7, t0.statut AS statut_8, t0.prompt_utilise AS prompt_utilise_9, t0.modele_ia AS modele_ia_10, t0.date_generation AS date_generation_11, t0.chapitre_id AS chapitre_id_12 FROM cours t0 WHERE t0.slug = 'conjugaison-verbes-reguliers' AND t0.chapitre_id = 28 LIMIT 1;
|
| 4 |
0.23 ms |
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.contenu AS contenu_5, t0.resume AS resume_6, t0.exercices AS exercices_7, t0.statut AS statut_8, t0.prompt_utilise AS prompt_utilise_9, t0.modele_ia AS modele_ia_10, t0.date_generation AS date_generation_11, t0.chapitre_id AS chapitre_id_12 FROM cours t0 WHERE t0.chapitre_id = ? ORDER BY t0.ordre ASC
SELECT t0.id AS id_1, t0.titre AS titre_2, t0.slug AS slug_3, t0.ordre AS ordre_4, t0.contenu AS contenu_5, t0.resume AS resume_6, t0.exercices AS exercices_7, t0.statut AS statut_8, t0.prompt_utilise AS prompt_utilise_9, t0.modele_ia AS modele_ia_10, t0.date_generation AS date_generation_11, t0.chapitre_id AS chapitre_id_12 FROM cours t0 WHERE t0.chapitre_id = 28 ORDER BY t0.ordre ASC;
|
| 5 |
0.24 ms |
SELECT t0.id AS id_1, t0.nom AS nom_2, t0.ordre AS ordre_3 FROM niveau t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.nom AS nom_2, t0.ordre AS ordre_3 FROM niveau t0 WHERE t0.id = 13;
|