GROUP BY 兩個字段

2022-10-08 23:00:27 字數 1009 閱讀 8903

create table #test(

a varchar(10),

b varchar(10),

c int

) insert into #test values('a','甲',1)

insert into #test values('a','甲',1)

insert into #test values('a','甲',1)

insert into #test values('a','已',1)

insert into #test values('b','甲',1)

insert into #test values('b','已',1)

insert into #test values('b','已',1)

insert into #test values('b','已',1)

select a,sum(c) from #test

group by a

--結果:

/*a 4

b 4

*/select b,sum(c) from #test

group by b

--結果:

/*甲 4

已 4

*/select a,b,sum(c) from #test

group by a,b

--結果:

/*a 甲 3

b 甲 1

a 已 1

b 已 3

*/select a,b,sum(c) from #test

group by b,a

--結果:

/*a 甲 3

a 已 1

b 甲 1

b 已 3

*/

總結:group by a,b

先根據b欄位進行分組,如果b能分,a 也能分 就分成同一組

兩個字段 使用R語言比較兩個字段不同的字元數

一 需求背景 有5000個車牌號,需要找出那些前兩位相同,後五位相差乙個字元的車牌。源資料如下 按需求找出來的資料如下 二 問題分析 5000個車牌號在excel中數量很少。但是處理這個問題需要對所有前兩位相同的車牌兩兩比對。那樣資料量是1973780條。暫不知怎麼用excel處理。所以這裡使用的工...

mysql 兩個字段拼接 mysql 多個字段拼接

mysql的查詢結果行欄位拼接,能夠用以下兩個函式實現 1.concat函式 mysql select concat 1 2 3 from test concat 1 2 3 123 假設連線串中存在null,則返回結果為null mysql select concat 1 2 null,3 fro...

java list 根據兩個字段排序

首先建立乙個定義排序規則的類,實現comparator介面 用來定義比較規則的介面 實現compare方法,來定義規則 class sort implements comparator else if t1.sort t2.sort else if t1.pubuli ime t2.pubuli i...