SQL查询语句去掉重复记录
当字段值 ProductID,GuiGe,XingHao,SalePrice 相同时只显示一条记录
求高手解决
[解决办法]
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)
[解决办法]
--方法一:select distinct ProductID,GuiGe,XingHao,SalePrice into temp from tb truncate table tbinsert into( ProductID,GuiGe,XingHao,SalePrice) select ProductID,GuiGe,XingHao,SalePrice from temp