表 table1
id RegName PostionSN PersonSN
1 山东齐鲁制药 223 2
2 山东齐鲁制药 224 2
3 北京城建公司 225 2
4 科技公司 225 2
我想获得结果是 id RegName PostionSN PersonSN
1 山东齐鲁制药 223 2
3 北京城建公司 225 2
4 科技公司 225 2
select distinct RegName,PostionSN,PersonSN from table1
如果查询的是多列 distinct 用和不用一样
只能用group by
用group by RegName
select * from table1 where id in (select min(id) from table1 group by RegName) and PersonSN=2
您可能感兴趣的文章:使用distinct在mysql中查询多条不重复记录值的解决办法sqlserver中distinct的用法(不重复的记录)使用GROUP BY的时候如何统计记录条数 COUNT(*) DISTINCToracle sql 去重复记录不用distinct如何实现为何Linq的Distinct实在是不给力解析mysql中:单表distinct、多表group by查询去除重复记录MongoDB教程之聚合(count、distinct和group)mongodb中使用distinct去重的简单方法SQL中distinct的用法(四种示例分析)oracle中distinct的用法详解SQL select distinct的使用方法针对distinct疑问引发的一系列思考
BY
group
方法
distinct