从多列中选择不同的值

时间:2010-05-18 14:05:45

标签: sql distinct

我有一个表(Some_Table)有两列:
A B
-------------------
1试验
2试验
3 test1
4 test1

我想返回B列的 DISTINCT 值,它是A列中的相关值(第一个是不同的集合),所以像这样:

A B
-----------
1试验
3 test1

什么是sql?

1 个答案:

答案 0 :(得分:7)

select min(A),B
  from table
 group by B