Sou novato em MySQL e gostaria de pedir ajuda pra funcionalidades de uma Trigger e Schedule..
Trigger
CREATE TRIGGER Parametros
AFTER INSERT ON {AQUI VAI O QUE??????}
FOR EACH ROW
BEGIN
INSERT INTO
test.BACKOFFICE (tipo_backoffice)
SELECT tipo_teste FROM test.Teste WHERE tipo_teste = 'BACKOFFICE';
INSERT INTO
test.Monitoramento (tipo_monitoramento)
SELECT tipo_teste FROM test.Teste
WHERE tipo_teste
IN('SCPC_END_DATE','SCPC_INIT_DATE','RENDA_END_DATE','RENDA_INIT_DATE','SCORE_END_DATE','SCORE_INIT_DATE','CHEQUE_END_DATE','CHEQUE_INIT_DATE','INIT_DATE',
'END_DATE');
INSERT INTO
test.PDV (tipo_pdv)
SELECT tipo_teste FROM test.Teste WHERE tipo_teste IN('CAIXA','OPERADOR','RESULTADO')
END;
Schedule
CREATE EVENT Tipos_Plataforma
ON SCHEDULE AT EVERY 2 HOUR
DO Parametros;
Pergunta
ricardo.bezerra
Pessoal, boa tarde!
Sou novato em MySQL e gostaria de pedir ajuda pra funcionalidades de uma Trigger e Schedule..
Trigger
Schedule
Grato desde já.
Abraços.
Link para o comentário
Compartilhar em outros sites
10 respostass a esta questão
Posts Recomendados