SQL语句,高分求教

日期:2012-07-04 17:47:07 人气:1

SQL语句,高分求教

select distinct 列名1 from table1 --找出没有重复记录所有记录 把上面这个当做一个视图 select A.主键 from table1 A inner join ( select distinct * from table1 )B on A.主键!=B.主键 然后delete from table1 where primaryKey in (主键值1,主键2,主键值3,主键值4.....)
    A+
热门评论