Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SQL Scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HOTMapper
SQL Scripts
Compare revisions
1970abd8c07ff01fe61f75007655e2e11288808f to 9829db1c65b0c79f7cf13ff0939fa00257e02577
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
tools/sql-scripts
Select target project
No results found
9829db1c65b0c79f7cf13ff0939fa00257e02577
Select Git revision
Branches
add_filters_localoferta_matricula
development
docente-type-2-test
homologa
issue-752-aee
issue-811-region
master
postgres
simcaq-new-tables
9 results
Swap
Target
tools/sql-scripts
Select target project
tools/sql-scripts
1 result
1970abd8c07ff01fe61f75007655e2e11288808f
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Add sql scripts for jvt_viva
· 9829db1c
Henrique Varella Ehrenfried
authored
5 years ago
9829db1c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
jvt_viva_educacao.sql
+63
-0
63 additions, 0 deletions
jvt_viva_educacao.sql
jvt_viva_trabalho.sql
+64
-0
64 additions, 0 deletions
jvt_viva_trabalho.sql
with
127 additions
and
0 deletions
jvt_viva_educacao.sql
0 → 100644
View file @
9829db1c
--
--Copyright (C) 2019 Centro de Computacao Cientifica e Software Livre
--Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
--
--This file is part of SMPPIR-Tables.
--
--SMPPIR-Tables is free software: you can redistribute it and/or modify
--it under the terms of the GNU General Public License as published by
--the Free Software Foundation, either version 3 of the License, or
--(at your option) any later version.
--
--SMPPIR-Tables is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--GNU General Public License for more details.
--
--You should have received a copy of the GNU General Public License
--along with SMPPIR-Tables. If not, see <https://www.gnu.org/licenses/>.
CREATE
TABLE
jvt_educacao_ag
AS
SELECT
ano_censo
,
cod_uf
,
sgl_uf
,
cor_raca
,
CASE
when
(
idade
>
45
)
THEN
45
ELSE
idade
END
AS
idade
,
nivel_max_escola
AS
maior_nivel
,
concluiu_frequentou
,
in_escola
,
serie_frequenta
,
nivel_escola
,
COUNT
(
*
)
AS
total
FROM
pnad_cont
GROUP
BY
ano_censo
,
sgl_uf
,
cod_uf
,
cor_raca
,
idade
,
maior_nivel
,
concluiu_frequentou
,
serie_frequenta
,
nivel_escola
,
in_escola
ORDER
BY
ano_censo
ASC
,
sgl_uf
ASC
,
cod_uf
ASC
,
cor_raca
ASC
,
idade
ASC
,
maior_nivel
ASC
,
concluiu_frequentou
ASC
,
serie_frequenta
ASC
,
nivel_escola
ASC
,
in_escola
ASC
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
jvt_viva_trabalho.sql
0 → 100644
View file @
9829db1c
--
--Copyright (C) 2019 Centro de Computacao Cientifica e Software Livre
--Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
--
--This file is part of SMPPIR-Tables.
--
--SMPPIR-Tables is free software: you can redistribute it and/or modify
--it under the terms of the GNU General Public License as published by
--the Free Software Foundation, either version 3 of the License, or
--(at your option) any later version.
--
--SMPPIR-Tables is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--GNU General Public License for more details.
--
--You should have received a copy of the GNU General Public License
--along with SMPPIR-Tables. If not, see <https://www.gnu.org/licenses/>.
--
CREATE
TABLE
jvt_trabalho_ag
AS
SELECT
ano_censo
,
cod_uf
,
sgl_uf
,
cor_raca
,
CASE
WHEN
((
trabalhou_referencia_dinheiro
=
1
)
OR
(
trabalhou_referencia_bens
=
1
)
OR
(
trabalhou_referencia_bico
=
1
)
OR
(
trabalhou_referencia_nao_remunerado
=
1
)
OR
(
afastado_referencia
=
1
))
THEN
1
WHEN
((
trabalhou_referencia_dinheiro
=
2
)
AND
(
trabalhou_referencia_bens
=
2
)
AND
(
trabalhou_referencia_bico
=
2
)
AND
(
trabalhou_referencia_nao_remunerado
=
2
)
AND
(
afastado_referencia
=
2
))
THEN
2
ELSE
null
END
AS
trabalhou_referencia
,
tipo_vinculo
,
rendimento_faixa
,
rendimento_bruto
,
COUNT
(
*
)
AS
total
FROM
pnad_cont
WHERE
(
idade
>=
15
)
AND
(
idade
<=
29
)
GROUP
BY
ano_censo
,
sgl_uf
,
cod_uf
,
cor_raca
,
tipo_vinculo
,
trabalhou_referencia
,
rendimento_faixa
,
rendimento_bruto
ORDER
BY
ano_censo
ASC
,
sgl_uf
ASC
,
cod_uf
ASC
,
cor_raca
ASC
,
tipo_vinculo
ASC
,
trabalhou_referencia
ASC
,
rendimento_faixa
ASC
,
rendimento_bruto
ASC
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.