Ver Mensaje Individual
  #9 (permalink)  
Antiguo 17/09/2009, 06:47
alkortius
 
Fecha de Ingreso: junio-2009
Mensajes: 174
Antigüedad: 14 años, 10 meses
Puntos: 0
Respuesta: Error al declarar variables

DROP TRIGGER IF EXISTS nombre_del_schema.trigger1;
DELIMITER $$
CREATE TRIGGER nombre_del_schema.trigger1 BEFORE INSERT ON nombre_del_schema.tabla1
FOR EACH ROW BEGIN
DECLARE val CHAR (50);
DECLARE Mdesde, Mhasta, MdesdeNewN, MhastaNewN CHAR (25);
END$$
DELIMITER;


Script line: 3 This version of MySQL doesn't yet support 'multiple triggers with the same action time and event for one table'

Hay alguna versión que soporte esto ?