Created
May 23, 2016 18:41
-
-
Save cesarAugusto1994/31b6304e70ed34e0bfdaf8edd2416d28 to your computer and use it in GitHub Desktop.
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
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