Last active
November 5, 2021 08:57
-
-
Save jere19/66d6db1cdc67625c0e691fe88c7b0e75 to your computer and use it in GitHub Desktop.
Exemple du cours pour Relax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- this is an example | |
| group: UTC_BM04_examples | |
| Touristes = { | |
| idTouriste:number, NomT:string, Ville:string, Sport:string | |
| 1, Marc, Paris, Ski | |
| 2, Jean, Toulouse, Tennis | |
| 3, Franc, Marseille, Football | |
| 4, Thomas, Lyon, Voile | |
| 5, Max, Paris, Golf | |
| } | |
| Sports = { | |
| Sport:string | |
| Ski | |
| Cyclisme | |
| Tennis | |
| Football | |
| Voile | |
| Golf | |
| } | |
| Destinations = { | |
| idTouriste:number, VilleD:string | |
| 1, Cannes | |
| 2, Ibiza | |
| 4, Tokyo | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment