sql >> Base de Datos >  >> RDS >> Mysql

¿Puede un activador MySQL simular una restricción CHECK?

cuando está actualizando datos:

delimiter $$
create trigger chk_stats1 before update on stats 
  for each row 
   begin  
    if  new.month>12 then
        SIGNAL SQLSTATE '45000'   
        SET MESSAGE_TEXT = 'Cannot add or update row: only';
      end if; 
      end; 
      $$

cuando está insertando datos:

   delimiter $$
    create trigger chk_stats before insert on stats 
      for each row 
       begin  
      if  new.month>12 then
       SIGNAL SQLSTATE '45000'   
       SET MESSAGE_TEXT = 'Cannot add or update row: only';
       end if; 
    end; 
    $$

estos disparadores funcionarán como restricción de verificación, funcionarán antes de insertar o actualizar y verificar el mes, si el mes> 12 da error.