We walk in the dark places no others will enterWe stand on the bridge and no one may pass
create table emptable (salary int);insert into emptable values (10), (20), (30)select * from emptable;gocreate trigger tgigupdateon emptablefor updateasif update(salary)beginprint 'can not update salary 'endgoupdate emptable set salary = salary + 1;select * from emptable; --the print statement is issued, all values are updateddrop table emptable;