ALTER trigger [dbo].[cleartest] on [dbo].[Call]
for update  not for replication
as 
if update(call_name)begin
 select * from call
endselect * from call得到的是更新前的表还是更新后的表???