This file contains 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
[{ | |
"ano": "2002", | |
"grande_area_conhecimento": "CIÊNCIAS AGRÁRIAS", | |
"total_valor": "18510752.0" | |
}, { | |
"ano": "2002", | |
"grande_area_conhecimento": "CIÊNCIAS BIOLÓGICAS", | |
"total_valor": "24637343.0" | |
}, { | |
"ano": "2002", |
This file contains 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
--Total value paid to research projects in BRAZIL by research field | |
WITH cnpq AS (SELECT ano, processo, beneficiario, palavra_chave, linha_fomento, modalidade, grande_area_conhecimento, area_conhecimento, subarea_conhecimento, pais_origem, pais_destino, valor FROM `basedosdados.br_cnpq_bolsas.microdados`) | |
SELECT | |
ano, | |
grande_area_conhecimento, | |
ROUND (SUM(valor),0) AS total_valor | |
FROM | |
cnpq | |
GROUP BY | |
ano,grande_area_conhecimento |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.