create trigger tr_update on 表
for update
as
if update(日期) or update(数量) and exists(select 1 from deleted where 审核='True')
begin
raiserror('业务已经通过审核,不能修改日期和数量',1,16)
rollback tran
end