Mysql
 sql >> Database >  >> RDS >> Mysql

Un trigger MySQL può simulare un vincolo CHECK?

quando aggiorni i dati :

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; 
      $$

durante l'inserimento dei dati :

   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; 
    $$

questi trigger funzioneranno come vincolo di controllo, funzioneranno prima dell'inserimento o dell'aggiornamento e controlleranno il mese, se il mese> 12 dà errore.