如何获得col1和col2的独特组合,其中前者是整数,后来是mysql中的字符串
答案 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
;