oracle怎么同时删除两个表的数据

如题所述

第1个回答  2017-05-26
delete from table1 a where exists (select 1 from table2 b where a.age_id=b.ageid and b.age='20'
) and a.name='张三'本回答被网友采纳
第2个回答  2017-05-26
truncate table xxx 清空一个表速度很快
相似回答