0

我了解您可以使用联接从多个表中删除。但是,我不知道该怎么做。我尝试使用此语句,但它也不起作用。

delete trm, val 
from MCS.stg_mdcr_trmntn_rpt trm, MCS.stg_mdcr_vldtn_rpt val
where trm.import_proc_id = 156;
4

1 回答 1

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;
于 2013-07-03T15:25:02.513 回答