Created
August 7, 2019 05:43
-
-
Save knightsamar/2386edd6b4ee7a65cbfdea943eda78cc to your computer and use it in GitHub Desktop.
Sample data for the the Q4 of Relational Algebra Assignment for CS340
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 for the Q4 of Relational Algebra Assignment for CS340 | |
group: PlayerTeamCities | |
Player = { | |
id:number, score:number, team_id:number | |
1, 100, 1 | |
2, 200, 2 | |
3, 99, 1 | |
4, 100, 2 | |
5, 150, 3 | |
6, 400, 4 | |
} | |
Team = { | |
id:number, name:string, city_id:number | |
1, 'Team1', 3 | |
2, 'Team2', 1 | |
3, 'Team3', 4 | |
4, 'Team4', 1 | |
5, 'Team5', 2 | |
6, 'Team6', 1 | |
} | |
City = { | |
id:number, name:string | |
1, 'St Petersburg' | |
2, 'New York' | |
3, 'London' | |
4, 'Ontario' | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment