Skip to content

Instantly share code, notes, and snippets.

@cesarAugusto1994
Created May 23, 2016 18:41
Show Gist options
  • Save cesarAugusto1994/31b6304e70ed34e0bfdaf8edd2416d28 to your computer and use it in GitHub Desktop.
Save cesarAugusto1994/31b6304e70ed34e0bfdaf8edd2416d28 to your computer and use it in GitHub Desktop.
SELECT *
FROM webpdv.usuarios
WHERE id_usuario = 24641;
SELECT md5(123);
SELECT *
FROM webpdv.pessoa_email;
SELECT
destinatario,
status
FROM webpdv.email_fila_envio
WHERE status = 'Pendente';
SELECT *
FROM webpdv.configuracao
WHERE id_configuracao = 23;
ALTER TABLE webpdv.pessoa_email
CHANGE COLUMN ativo status INT NOT NULL DEFAULT 0;
UPDATE webpdv.configuracao
SET valor_configuracao = 'Móveis Simonetti'
WHERE id_configuracao = 23;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment