我想获得第1列和第2列串联的计数
这是我到目前为止所做的。
Select Count(*) Concat(to|| from) from Table
这就是我的数据
to from rate size
1 11 4 lg
1 11 4 lg
1 12 5 sm
我需要一个输出,该输出将使我将列1和2串联在一起,所以...
to from Count
1 11 2
1 12 1
答案 0 :(得分:4)
select to, from_, count( to||from_ )
from mytable
group by to, from_