delete from products where rowid>2
delete products from products as p where p.rowid>2
delete p from products as p where p.rowid>6
delete srsfkw01 from srsfkw01 a left JOIN BIXNDW c
ON c.BIXNDW_DWID =data_DWID
where BIXNDW_DWID is null;
主要是 不能直接 delete from products p
得变成 delete products from products p
ORACLE 可以直接起别名
delete from products p where p.rowid>2
原文:https://www.cnblogs.com/lsjava/p/11758333.html