MS SQL SERVER2000如和利用公式或触发器使该字段的数据是另一表某字段的数据
------解决方案--------------------
公式只能在本表中使用,不能跨表
触发器应该可以
------解决方案--------------------
------解决方案--------------------
- SQL code
create trigger tri_name on tabfor updateasupdate b set col=......
create trigger tri_name on tabfor updateasupdate b set col=......