[marscrazy]:在sql server中我可以实现 可以用触发器: create table A (fa int ,fb int null,fc int null) create trigger TforA on A for insert,update as update A set fb=inserted.fa+10,fc=inserted.fa*3 from inserted where fa=inserted.fa update A set fb=updated.fa+10,fc=updated.fa*3 from updated where fa=updated.fa 但是在管理系统开发平台3.7中我好像实现不了。 应该怎么解决????
——————————————————————————————————
[admin]:使用记录级计算与验证功能即可。 [IMG]upload/forum/200432683628.jpg[/IMG] [ALIGN=right][COLOR=#000066][本贴已被 admin 于 2004-3-26 8:36:44 修改过][/COLOR][/ALIGN]