Skip to content

Instantly share code, notes, and snippets.

@dnt994
Last active March 1, 2019 11:52
Show Gist options
  • Save dnt994/1adcda19c1a9456b6dd7007d4238aae6 to your computer and use it in GitHub Desktop.
Save dnt994/1adcda19c1a9456b6dd7007d4238aae6 to your computer and use it in GitHub Desktop.
group: es3_7
FILM = {
CodiceFilm:number, Titolo:string, Regista:number, Anno:number, CostoNoleggio:number
145684 Armageddon 15434 1997 5000000
457343 La vita è bella 67532 1998 1000000
563822 Ronin 34573 1997 2000000
}
ARTISTI = {
CodiceAttore:number, Cognome:string, Nome:string, Sesso:string, DataNascita:string, Nazionalità:string
67532 Benigni Roberto M 14/03/1950 Italiana
12456 DeNiro Robert M 22/04/1951 Americana
45673 Braschi Nicoletta F 1/05/1954 Italiana
67777 Willis Bruce M 3/2/1959 Americana
12345 Tyler Liv F 18/02/1962 Americana
}
INTERPRETAZIONI = {
CodiceFilm:number, CodiceAttore:number, Personaggio:string
457343 67532 Guido
457343 45673 Dora
145684 67777 Harry
145684 12345 Grace
563822 12456 Sam
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment