本文介绍了如何回滚我的更新查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

UPDATE <table name>
SET machine_incharge='Expense Approver1', active_machine='yes'



不幸的是在没有条件的情况下执行了将近800行,请帮助我回滚查询.

在此先感谢

问候
vamsi krishna j



unfortunately executed with out where condition it is effected nearly 800 rows please help me to roll back the query.

Thanks in Advance

Regards
vamsi krishna j

推荐答案

begin tran test
Update salesproposal set statuscode = 4 where so_id = 47888
UPDATE <table name="">
SET machine_incharge='Expense Approver1', active_machine='yes'
end tran;

</table>


现在您可以
要么


now you can
either

rollback tran test




or

Commit tran test



这篇关于如何回滚我的更新查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 11:45