Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Gatilho MySQL após inserção e após atualização


Certifique-se de alterar o delimitador antes de definir o gatilho. Verifique também se você está usando os mesmos nomes de tabela e coluna ao criar a tabela e o gatilho (você está usando att e attendance e SID e StudID , em seus exemplos).

Como está, a definição do trigger não causou nenhum erro quando testei no MySQL 5.1.55 após configurar o delimitador.
delimiter $$
CREATE TRIGGER `att_up` 
  AFTER UPDATE ON `attendance`
FOR EACH ROW 
BEGIN
  DECLARE Zeros INT;
  DECLARE Ones INT;
  DECLARE total INT;
  DECLARE attend FLOAT;
  SELECT SUM(8-(h1+h2+h3+h4+h5+h6+h7+h8)), 
         SUM(h1+h2+h3+h4+h5+h6+h7+h8),
         SUM(8-(h1+h2+h3+h4+h5+h6+h7+h8)) + SUM(h1+h2+h3+h4+h5+h6+h7+h8)
    INTO Zeros, Ones, Total FROM attendance 
    WHERE SID=NEW.SID;
  SET attend=((Zeros-Ones)/total)/100;
  INSERT INTO per (SID, CID, per) values (NEW.SID, NEW.CID, attend)
    ON DUPLICATE KEY UPDATE per=attend;
END$$
delimiter ;