I use the following query to select data from one database and insert it into another:
insert into banco_novo.cliente (codcliente, nome, cpf, rg, sexo, data_nascimento, endereco, bairro, cidade, estado, cep)
select codcliente, nome, cpf, rg, IFNULL(sexo, 'I'), IFNULL(data_nascimento, '2000-01-01'), endereco, bairro, cidade, IFNULL(estado, '0'), cep
from banco_antigo.cliente
I now need to select from a database on one server and insert it into another database on another server. I tried this way:
insert into servidor_novo.banco_novo.cliente (codcliente, nome, cpf, rg, sexo, data_nascimento, endereco, bairro, cidade, estado, cep)
select codcliente, nome, cpf, rg, IFNULL(sexo, 'I'), IFNULL(data_nascimento, '2000-01-01'), endereco, bairro, cidade, IFNULL(estado, '0'), cep
from servidor_antigo.banco_antigo.cliente
But without success.
I have the workbench connected to the two servers, but I do not know how to execute the query to do this operation.