oracle 删除关联表

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_32423845/article/details/88372629

删除某一个关联系统:把ID改成需要删除的那个关联系统ID

delete from dbcorre where id='1';
delete from dbcorredetail where correid='1';
delete from dbcorrearith where correid='1';
commit;


 

猜你喜欢

转载自blog.csdn.net/qq_32423845/article/details/88372629