Skip to content

Instantly share code, notes, and snippets.

@mai1015
Last active June 26, 2020 15:21
Show Gist options
  • Save mai1015/be3116af124c6310a3077ccf6cf4bd3c to your computer and use it in GitHub Desktop.
Save mai1015/be3116af124c6310a3077ccf6cf4bd3c to your computer and use it in GitHub Desktop.
group: nameOfTheNewGroup
Country = {
country_id:number,country_name:string
1, US
2, CAN
3, CHINA
}
city = {
city_id:number, city_name:string, population:number, country_id:number
1, LA, 80000, 1
1, ON, 100000, 2
1, QC, 50000, 2
2, GD, 100000000, 3
}
language = {
lang_id:number, lang_name:string
1, CN
2, EN
3, OMG
}
countrylanguage = {
country_id:number, lang_id:number, percentage:number
1, 2, 100
2, 2, 80
2, 1, 20
3, 1, 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment