Código:
ALTER TRIGGER [dbo].[actualizar1] on [dbo].[usuarios] Instead of update AS if (exists(select numeros from usuarios where numeros > 100)) BEGIN SET NOCOUNT ON; RAISERROR ('Imposible actualizar los registros debe ser menor que 100',16, 1) ROLLBACK TRAN END