比如在表tb1中有字段a 和b
想利用update触发器在字段a的值变成1时,字段b的值修改成‘OK’
请问该怎么实现呢?
create trigger tb1_updateon tb1for updateas
update tb1 set b='ok' where id exists(select 1 from inserted where a=1 and id=tb1.id)