oracle多表关联删除的两种方法 第一种使用exists方法 [sql] view plaincopyprint? delete from tableA where exits ( select 1 from tableB Where tableA.id = tableB.id ) 第二种使用匿名表方式进行删除 [sql] view plaincopyprint? delete from ( select 1 from tableA,TableB where tableA.id = tableB.id ) 相关文章: 2021-07-21 2022-02-06 2022-12-23 2021-04-24 2021-05-27 2022-12-23 2021-09-26 2021-11-23