I am trying to query a bulk delete with a trigger, however the application that I am using (Clarity) deals with a bulk delete one line at a time.
For example if a user deletes 3 rows at once, instead of firing the TRIGGER once, it will fire the TRIGGER 3 separate times.
Therefore when I query the DELETED table within my trigger it will only ever have one row in it.
Is there a way around this?
My aim is to have all the deleted rows available at the one time so that I can query them together.