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
| -- Inserts para estados | |
| INSERT INTO estado (id, nome, sigla) VALUES (1, 'Goiás', 'GO'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (2, 'Minas Gerais', 'MG'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (3, 'Pará', 'PA'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (4, 'Ceará', 'CE'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (5, 'Bahia', 'BA'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (6, 'Paraná', 'PR'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (7, 'Santa Catarina', 'SC'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (8, 'Pernambuco', 'PE'); | |
| INSERT INTO estado (id, nome, sigla) VALUES (9, 'Tocantins', 'TO'); |
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
| [ | |
| { | |
| "municipio": "Abadia de Goiás", | |
| "uf": "GO", | |
| "ddd": "62", | |
| "macro_regiao": "Goiânia", | |
| "estado": "Goiás" | |
| }, | |
| { | |
| "municipio": "Abadia dos Dourados", |