服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - distinct 多列问题结合group by的解决方法

distinct 多列问题结合group by的解决方法

2019-11-24 16:44MSSQL教程网 Sql Server

distinct 多列问题 group by 解决

表 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

延伸 · 阅读

精彩推荐