Part 1
1

Chapter 2 :
Trier les données

Exercice du chapitre trier les données : Exercice SQL n°4

The goal of the exercise is to apply what you have learned using the examples.

Statement

Afficher le nom des films dans l'ordre alphabétique inverse.

  • Show relational schema Download tables (PDF)
  • Table Clients (codecli, prenomcli, nomcli, ruecli, cpcli, villecli)
    Primary key : codecli

    Table Films (codefilm, nomfilm)
    Primary key : codefilm

    Table Locations (codecli, codefilm, datedebut, duree)
    Primary key : codecli, codefilm
    Foreign key : codefilm of the table Films, codecli of the table Clients
Enter your response
Result to obtain
Request 1
nomfilm
Tigres et dragons
Shoot' Em UP
Ong Bak
Matrix 1
Machete
Intouchables
Dans la peau de John Malkovitch
C'est arrivé près de chez vous
Brain dead
Boulevard de la mort
Bernie
4 / 6
Exercice du chapitre trier les données