Created
May 22, 2019 14:49
-
-
Save hpaul/62866beffcc320bba21a455d13a6f4e9 to your computer and use it in GitHub Desktop.
Extract most cited authors
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
| SELECT | |
| author.id, | |
| coauthors.co_list, | |
| json_extract(author.affiliation_current, '$.affiliation-country') AS country_origin, | |
| author.cited_by_count | |
| FROM | |
| author | |
| INNER JOIN coauthors ON author.id = coauthors.id | |
| WHERE | |
| author.cat LIKE '%BIOC%' | |
| AND country_origin IN ('Austria', 'Belgium', 'Bulgaria', 'Croatia', 'Cyprus', 'Czech Republic', 'Denmark', 'Estonia', 'Finland', 'France', 'Germany', 'Greece', 'Hungary', 'Ireland', 'Italy', 'Latvia', 'Lithuania', 'Luxembourg', 'Malta', 'Netherlands', 'Poland', 'Portugal', 'Romania', 'Slovakia', 'Slovenia', 'Spain', 'Sweden', 'United Kingdom') | |
| ORDER BY | |
| author.cited_by_count DESC | |
| LIMIT 1200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment