据我所知,您可以使用连接从多个表中删除。但是,我不知道该怎么做。我尝试使用这个语句,它也没有用。
delete trm, val
from MCS.stg_mdcr_trmntn_rpt trm, MCS.stg_mdcr_vldtn_rpt val
where trm.import_proc_id = 156;
答案 0 :(得分:1)
有什么问题
delete from MCS.stg_mdcr_trmntn_rpt
where import_proc_id = 156;
delete from MCS.stg_mdcr_vldtn_rpt
where import_proc_id = 156;
commit;