1、对于第一种重复,比较容易解决,使用
select distinct * from tableName
就可以得到无重复记录的结果集。
如果该表需要删除重复的记录(重复记录保留1条),可以按以下方法删除
select distinct * into #Tmp from tableName
drop table tableName
select * into tableName from #Tmp
drop table #Tmp
posted on 2010-02-08 16:22
冰是没有未来的,因为它的永恒 阅读(237)
评论(0) 编辑 收藏 所属分类:
postges database