From 88f3ef24586f8b42c1c6eb86215798f594c3b365 Mon Sep 17 00:00:00 2001 From: Pascal Date: Tue, 2 Mar 2021 11:31:14 +0100 Subject: [PATCH] proc --- EXOS/Exam2020.tex | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EXOS/Exam2020.tex b/EXOS/Exam2020.tex index ff250df..2801b6a 100644 --- a/EXOS/Exam2020.tex +++ b/EXOS/Exam2020.tex @@ -381,6 +381,12 @@ create table contenir ( idReserv char(3) primary key references RESERVATION, idEquipement char(3) references EQUIPEMENT, nombre number); + +create table facturer( +nomSport varchar2(10) references SPORT, +numCreneau char(2) references CRENEAU, +tarifHoraire number, +primary key(nomSport, numCreneau)); \end{verbatim}