diff --git a/doc/service_correction_bdd.md b/doc/service_correction_bdd.md
index 389c8aaf63fb1c25314e80dbc3eabe77fbb2d722..238baef27c6e5c07d04c123dff1c84d603ebc390 100644
--- a/doc/service_correction_bdd.md
+++ b/doc/service_correction_bdd.md
@@ -13,22 +13,23 @@ Exécuter la requête suivante pour récupérer toutes les informations nécessa
 ```sql
 SELECT
   /* Libellés pour retrouver la bonne ligne */
-  tvh.libelle       type_vh,
-  ep.code           element,
-  str.libelle_court structure,
-  p.libelle_court   semestre,
-  ti.code           type_intervention,
-  mnp.libelle_court motif_non_paiement,
-  src.code          source,
-  vh.horaire_debut  horaire_debut,
-  vh.horaire_fin    horaire_fin,
+  tvh.libelle        type_vh,
+  ep.code            element,
+  str.libelle_court  structure,
+  p.libelle_court    semestre,
+  ti.code            type_intervention,
+  mnp.libelle_court  motif_non_paiement,
+  src.code           source,
+  vh.horaire_debut   horaire_debut,
+  vh.horaire_fin     horaire_fin,
   /* Identifiants */
-  s.id              service_id,
-  vh.id             volume_horaire_id,
-  vvh.validation_id validation_id,
-  vh.contrat_id     contrat_id,
+  s.id               service_id,
+  vh.id              volume_horaire_id,
+  vh.auto_validation auto_validation,
+  vvh.validation_id  validation_id,
+  vh.contrat_id      contrat_id,
   /* Heures */
-  vh.heures
+  vh.heures          heures
 FROM
   volume_horaire vh
   JOIN service s ON s.id = vh.service_id AND s.histo_destruction IS NULL