Soit le schéma relationnel suivant gérant le fonctionnement d'une agence de location d'appartements.
APPARTEMENT(#code_appt:String, adresse:String, type:{studio,F1,F2,F3,F4,F5+}, prix_loyer:Real)
LOCATAIRE(#code_loc:String, nom:String, prenom:String)
LOCATION(#code_loc=>Locataire, #code_appt=>Appartement)
PAIEMENT_LOYER(#code_loc=>Locataire, #code_appt=>Appartement, #date_payement:Date, prix_paye:Real)
En algèbre relationnelle et en SQL afficher tous les paiements effectués par un locataire avec le code X.
R1=Restriction(PAIEMENT_LOYER,code_loc=X)
R2=Projection(R1,prix_paye)
SELECT prix_paye
FROM PAIEMENT_LOYER
WHERE code_loc='X'
En algèbre relationnelle et en SQL afficher l'adresse de l'appartement loué par un locataire avec le code X.
R1=Restriction(LOCATION,Code_loc=X)
R2=Jointure(R1,APPARTEMENT, R1.code_appt=APPARTEMENT.code_appt)
R3=Projection(R2,adresse)
SELECT adresse
FROM LOCATION l JOIN APPARTEMENT a
ON l.code_appt=a.code_appt
WHERE l.code_loc='X'
En algèbre relationnelle et en SQL proposer une requête qui affiche tous les appartements libres.
R1=JointureExterneGauche(APPARTEMENT,LOCATION, APPARTEMENT.code_appt=LOCATION.code_appt)
R2=Restriction (R1, code_loc=NULL)
SELECT *
FROM APPARTEMENT a LEFT JOIN LOCATION l
ON l.code_appt=a.code_appt
WHERE l.code_loc IS NULL