数据库名称:HIVE
数据库版本:
内容/问题描述:
资料是这样
0000008201 3 A 002
0000008201 1 A 003
0000008201 5 A 003
想取出结果为
0000008201 3 A 002
0000008201 6 A 003
这是我写的
select f.pid,sum(f.v),f.c from testtry f join testtry s on f.pid=s.pid where
f.a='A' AND f.c=s.c group by f.pid,f.c ;
一直不知道改哪里才会对