在oracle中如何用一张表中的数据来定位删除另外一张表的数据?在线急等!先谢过了!

2025-02-26 13:02:06
推荐回答(1个)
回答1:

delete from B where B.fk_id=(select id from A where id=<数值>);
commit;