首页上一页 1 下一页尾页 2 条记录 1/1页
用SQL语句如何去掉某个字段重复的记录?
发表在Oracle视频答疑
2009-05-12
是否精华
是
否
版块置顶:
是
否
表tb_products结构如下:
id products price Elite(是否审核) AddTime(记录添加时间)
1 苹果 10.5 1 2009-01-20
2 梨子 4.1 0 2009-01-11
3 苹果 10.5 1 2009-01-09
我想让每种审核过的产品只显示一次,我的SQL语句是这样写的:select distinct * from [tb_products] where Elite=1 这样写不是我想查询的结果.
如果这样写:select distinct products from [tb_products] where Elite=1,是可以了,但是只显示products 字段的信息,其实该条记录还有很多的信息要显示出来.不知道老师有什么办法呢?
id products price Elite(是否审核) AddTime(记录添加时间)
1 苹果 10.5 1 2009-01-20
2 梨子 4.1 0 2009-01-11
3 苹果 10.5 1 2009-01-09
我想让每种审核过的产品只显示一次,我的SQL语句是这样写的:select distinct * from [tb_products] where Elite=1 这样写不是我想查询的结果.
如果这样写:select distinct products from [tb_products] where Elite=1,是可以了,但是只显示products 字段的信息,其实该条记录还有很多的信息要显示出来.不知道老师有什么办法呢?