Part 1
1

Chapter 1 :
Afficher des colonnes depuis une table

Exercice du chapitre afficher les colonnes d'une table : Exercice SQL n°3

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

Statement

Afficher toutes les informations sur tous les films

  • 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
codefilm
nomfilm
1
C'est arrivé près de chez vous
2
Bernie
3
Dans la peau de John Malkovitch
4
Intouchables
5
Ong Bak
6
Shoot' Em UP
7
Tigres et dragons
8
Matrix 1
9
Machete
10
Boulevard de la mort
11
Brain dead
3 / 6
Exercice du chapitre afficher les colonnes d'une table