oracle除开重复数据sql

oracle去除重复数据sql?delete table1 where rowid not in ( 2select max(rowid) from table1 group by co

oracle去除重复数据sql

?

delete table1 where rowid not in ( 2select max(rowid) from table1 group by col1 ,col2,col3 )