2
我想根據另一個表從表中刪除記錄。 例如這是基表:根據另一個表從表中刪除
table1:
License Major
9 0012
8 0015
7 0018
9 0019
,我想根據表2,刪除在表1項:
table2:
License Major
8 0015
7 0018
9 0019
是這樣的:
delete from table1
where table1.license=table2.license
and table1.major=table2.major