Exercice

Quelles sont les expressions relationnelles équivalentes à :

CTRL+C pour copier, CTRL+V pour coller
1
Projection ( Jointure (R1, R2, R1.A1=R2.A1), R1.A1, R2.A2)
Projection ( Jointure (R1, R2, R1.A1=R2.A1), R1.A1, R2.A2)
  • Jointure ( Projection(R1, A1), Projection(R2, A2), R1.A1=R2.A1)

  • Projection ( Jointure (R2, R1, R2.A1=R1.A1), R1.A1, R2.A2)

  • Projection ( Restriction ( Produit(R1, R2), R1.A1=R2.A1), R1.A1, R2.A2)

  • Produit (R1, R2, R1.A1=R2.A1, R1.A1, R2.A2)

CorrectionRecommencer