Skip to content

Instantly share code, notes, and snippets.

@emiliojva
Last active April 26, 2020 03:04
Show Gist options
  • Save emiliojva/b532bf436d3b462f2ce7634556e894e2 to your computer and use it in GitHub Desktop.
Save emiliojva/b532bf436d3b462f2ce7634556e894e2 to your computer and use it in GitHub Desktop.
MySQL - Snippets

MySQL - Snippets SGDB

  • Scripts rotineiros para dar match em alguns situações.
/**
* Atualizando campo 'municipio_id' da tabela unidade com valores equivalentes ao 'id' da tabela municipio
*/
begin;
UPDATE unidade
INNER JOIN municipio ON unidade.endereco_municipio = municipio.nome
SET unidade.status = if(unidade.endereco_municipio = municipio.nome, 'VALIDO', '')
WHERE unidade.endereco_municipio = municipio.nome;
rollback;
# commit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment