首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

oracle除开重复数据sql

2012-07-02 
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 )

热点排行