1
Someone would have a query to insert in the Oracle database all Brazilian cities with accentuation and cedilla in the words?
I’m trying to find some on the internet, but all use Internet of multiple values and Oracle would have to write the syntax: INSERT INTO TABELA VALUE VALOR
for each city.
I already have the table created with the columns: ID_MUNICIPIO
, NM_MUNICIPIO
and ID_ESTADO
.
If you already have a text file with the cities you can replace it with some editor ex.: where you have it
,
replace byInsert into table (id_municipio, nm_municipio, id_estado) values (
– Caique Romero