日期:2014-05-18  浏览次数:20530 次

SQL查询语句去掉重复记录


当字段值 ProductID,GuiGe,XingHao,SalePrice 相同时只显示一条记录

求高手解决

------解决方案--------------------
SQL code
select * from tablename t where 主键字段=
(
select max(主键字段) from tablename 
where ProductID=t.ProductID and GuiGe=t.GuiGe and XingHao=t.XingHao and SalePrice=t.SalePrice
)

------解决方案--------------------
SQL code


--方法一:
select distinct ProductID,GuiGe,XingHao,SalePrice into  temp from tb 

truncate table tb

insert into( ProductID,GuiGe,XingHao,SalePrice) 
 select  ProductID,GuiGe,XingHao,SalePrice
   from temp