From 8e943cb2d1a5efb3d1af9a574d1bddc8287ff61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20L=C3=A9cluse?= <laurent.lecluse@unicaen.fr> Date: Wed, 22 May 2019 16:32:36 +0200 Subject: [PATCH] Update service_correction_bdd.md --- doc/service_correction_bdd.md | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/doc/service_correction_bdd.md b/doc/service_correction_bdd.md index 389c8aaf63..238baef27c 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 -- GitLab