Skip to content
Snippets Groups Projects
Commit 8c0e8cea authored by SAEZ Theo's avatar SAEZ Theo
Browse files

Début question 3, apprentissage des VIEW

parent 852facdf
No related branches found
No related tags found
No related merge requests found
CREATE VIEW RéservationsAvecHoraires
AS SELECT r.NumR, r.NumC, r.NumT, r.VilleD, r.VilleA, r.Nbplaces, e_départ.DATED, e_arrivée.DATEA
FROM Réservations r
JOIN Etapes e_départ ON r.NumT = e_départ.NumT AND r.VilleD = e_départ.DATEA.NomV
JOIN ETAPES e_arrivée ON r.NumT = e_arrivée.NumT AND r.VilleA = e_arrivée.DATEA.NomV
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment