摘要: oracle多表关联删除的两种方法 第一种使用exists方法 delete from tableA where exits ( select 1 from tableB Where tableA.id = tableB.id ) 第二种使用匿名表方式进行删除 delete from ( selec 阅读全文
posted @ 2019-04-07 10:31 AaronLi 阅读(16105) 评论(0) 推荐(0) 编辑