萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> mysql distinct 多列問題結合group by的解決方法

mysql 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

copyright © 萬盛學電腦網 all rights reserved