选择distinct(col1,col2),其中col1是字符串,col2是int

时间:2014-01-18 14:14:29

标签: mysql

如何获得col1和col2的独特组合,其中前者是整数,后来是mysql中的字符串

2 个答案:

答案 0 :(得分:0)

使用GROUP BY

SELECT col1,col2 FROM TABLE
GROUP BY col1,col2

答案 1 :(得分:0)

使用distinct

select distinct
  col1,col2 
from
  tbl
;

使用group by

select 
  col1,col2 
from
  tbl
group by col1, col2
;