?一个sql语句问题
一个表更新了几条语句,在没对这几条语句标注的情况下 
 如何用一条select语句查询更新的这几条语句?
------解决方案--------------------一条语句很难实现   
 declare 
   i int; 
 begin 
   update tab_stu_info set stu_school= '006 ' where stu_school= '003 '; 
   i:=sql%ROWCOUNT; 
   dbms_output.put_line( i ); 
 end;
------解决方案--------------------还是用触发器好实现吧