Skip to content

Instantly share code, notes, and snippets.

@t-d-o-g
Last active October 15, 2022 21:35
Show Gist options
  • Save t-d-o-g/7dd23a3dd39547b9f78bc38a1c47b7c9 to your computer and use it in GitHub Desktop.
Save t-d-o-g/7dd23a3dd39547b9f78bc38a1c47b7c9 to your computer and use it in GitHub Desktop.
group: articles
Author = { authorID, name
1, 'John Smith'
2, 'Marc Antoine'
3, 'Tommy Hicks'
4, 'Paul weaver'
5, 'Courtney Shaw'
6, 'Scott Lawrence'
7, 'Nevaeh Soto'
8, 'Billie Martin'
9, 'Madison Matthews'
}
Authoring = { articleID, authorID
1, 1
1, 2
2, 2
2, 1
1, 3
4, 4
5, 2
6, 5
1, 4
8, 3
2, 7
2, 5
2, 6
9, 9
}
Article = { articleID, title, venue, year, month
1, article1, venue1, 2001, jan
2, article2, venue2, 2002, feb
3, article3, venue3, 2003, march
4, article4, venue4, 2004, april
5, article5, venue5, 2022, may
6, article4, venue21, 2021, dec
7, article5, venue7, 2007, june
8, article5, venue8, 2008, july
9, article9, venue9, 2009, sept
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment