程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql distinct 多列問題結合group by的解決方法

mysql distinct 多列問題結合group by的解決方法

編輯:MySQL綜合教程

表 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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved