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

Controllo di una tabella per la sovrapposizione di tempo?

Questo è un modello di query per il quale ho trovato la risposta molti anni fa:

SELECT *
FROM mytable a
JOIN mytable b on a.starttime <= b.endtime
    and a.endtime >= b.starttime
    and a.name != b.name; -- ideally, this would compare a "key" column, eg id

Per trovare "qualsiasi sovrapposizione", confronta il opposto fine del periodo di tempo tra loro. È qualcosa per cui ho dovuto prendere carta e penna e disegnare intervalli adiacenti per rendermi conto che i casi limite si riducevano a questo confronto.

Se vuoi evitare che le righe si sovrappongano, inserisci una variante di questa query in un attivatore:

create trigger mytable_no_overlap
before insert on mytable
for each row
begin
  if exists (select * from mytable
             where starttime <= new.endtime
             and endtime >= new.starttime) then
    signal sqlstate '45000' SET MESSAGE_TEXT = 'Overlaps with existing data';
  end if;
end;