|
我正在尝试在postgresql中创建数据透视表类型视图,并且快要完成了!这是基本查询:) y ]2 D5 [! |2 O- A U- x0 P- E
select 0 @: ]* `, x0 i' A8 l% [. C$ M
acc2tax_node.acc, tax_node.name, tax_node.rank 4 U/ \; T4 ~% Z% |4 V
from
/ Z. M2 |) }" M- }& Xtax_node, acc2tax_node + N6 h3 d+ E, {4 \
where
& t$ v2 `# L* a" e; r) f3 Ktax_node.taxid=acc2tax_node.taxid and acc2tax_node.acc='AJ012531';; ` b$ G# o& Q7 X$ g1 C3 S
和数据:2 K. @1 q z0 u+ N5 s C
acc | name | rank
* I. S. [4 q2 U) e2 a3 f6 a----------+-------------------------+--------------: O% W0 y$ W, B
AJ012531 | Paromalostomum fusculum | species
4 P( Q, c, K1 k6 @ AJ012531 | Paromalostomum | genus$ k7 P0 m+ F& g" K" m: p
AJ012531 | Macrostomidae | family
$ f6 `- }; Y. i4 i! f AJ012531 | Macrostomida | order$ z' O8 s% B; ?2 V9 K$ n2 c
AJ012531 | Macrostomorpha | no rank
. Z. D! H# i K AJ012531 | Turbellaria | class0 J$ N: R$ @* e) S8 F
AJ012531 | Platyhelminthes | phylum7 D" X( G% I$ J1 t
AJ012531 | Acoelomata | no rank+ f3 T) q9 y; Z8 P3 `+ U
AJ012531 | Bilateria | no rank
) R7 ^3 @1 ~! \; Y/ Y( b AJ012531 | Eumetazoa | no rank
6 i1 N6 A9 k6 `2 @ AJ012531 | Metazoa | kingdom
" D' G3 Z: [9 S* W3 [9 V AJ012531 | Fungi/Metazoa group | no rank9 q: G9 I" j. ]/ { r, m/ D
AJ012531 | Eukaryota | superkingdom$ h: \) [6 |7 @+ G3 e
AJ012531 | cellular organisms | no rank6 H' M0 R2 ~+ n; U' X& G
我想要得到的是以下内容:! Q& T! E8 H8 c5 Q
acc | species | phylum
% T5 E: M* W/ Y; e. ^AJ012531 | Paromalostomum fusculum | Platyhelminthes
1 F6 v& h/ N( G9 t; G1 H4 f4 ]我正在尝试使用CASE WHEN进行此操作,因此我得到了以下信息:7 B' g7 p, h7 B4 q1 s
select . w) M0 B [6 M+ U1 ]' X
acc2tax_node.acc,
. _0 G! y7 i; n% i1 J6 pCASE tax_node.rank WHEN 'species' THEN tax_node.name ELSE NULL END as species, 0 Y% [. G6 i$ {) u7 O' p
CASE tax_node.rank WHEN 'phylum' THEN tax_node.name ELSE NULL END as phylum | M$ Q8 g h7 e3 d4 e
from 7 U( n. V) Q1 s
tax_node, acc2tax_node
3 M7 k8 L( Q4 C5 X* |& H4 f* u/ K/ xwhere # A; _9 h7 t3 n% O- o$ \1 p
tax_node.taxid=acc2tax_node.taxid and acc2tax_node.acc='AJ012531'; v$ u8 t: u- A, r2 u/ i
这给了我输出:' R( j; q- e9 G7 t2 }/ ^2 s) z4 U
acc | species | phylum
& a" ~# \' |1 Y0 \' x' Z. q* F: ?2 e----------+-------------------------+-----------------
5 r ^. A. u2 h, _' }/ S AJ012531 | Paromalostomum fusculum |
) Y" n) E8 u/ C; R' H6 E; h3 b8 g0 ` AJ012531 | | " c& T: U. c' c% u3 ~0 V9 k6 x
AJ012531 | |
- R3 `' s' R% k- g$ Q2 w2 g; W AJ012531 | | ( Y6 p" _$ C7 {( ^4 Z0 o1 t$ B$ ^
AJ012531 | | 6 S: g5 Z6 O! R+ t( [7 o- q& j8 i
AJ012531 | |
& O* x) p5 V9 Y AJ012531 | | Platyhelminthes
2 J; T* }" `6 \0 @) i AJ012531 | | + I7 j& `( ^5 U' R6 N# n
AJ012531 | | 4 f! U5 s! {! s+ }6 z: c
AJ012531 | | 9 \: Y- m" w* a$ g* f y0 T
AJ012531 | |
( ]& W4 J% l. Y; ~5 Z5 W5 \ AJ012531 | |
+ e9 Z1 k0 v1 i- i AJ012531 | |
& C/ A1 w4 C* B$ d( N8 S AJ012531 | |% g: j, E3 [. H/ T" Q0 I3 x
现在我知道我必须在某个时候按acc分组,所以我尝试; d/ H* x: H' O' x! a+ g+ l, W
select
+ F C. D0 g: R: l+ n- yacc2tax_node.acc, 5 H- h9 p: z4 _2 G3 q4 I
CASE tax_node.rank WHEN 'species' THEN tax_node.name ELSE NULL END as sp,
: @! U) ?+ z1 ]! ]+ gCASE tax_node.rank WHEN 'phylum' THEN tax_node.name ELSE NULL END as ph
# l' A m1 Y4 E# A s% d0 Qfrom
4 G# B+ k+ h* i9 Y. htax_node, acc2tax_node . Y0 q) }0 N) W. ?* I2 g) |
where
5 i" N1 @. k. \' ~) k& Z( m; Vtax_node.taxid=acc2tax_node.taxid and acc2tax_node.acc='AJ012531'
4 h9 @! w# _: M' M2 O0 u2 wgroup by acc2tax_node.acc; X9 ]* [7 {6 T. h$ M
但我感到恐惧
1 g: q$ X% B+ W% RERROR: column "tax_node.rank" must appear in the GROUP BY clause or be used in an aggregate function
9 X7 L% O' u8 F: G# a" H5 v我能够找到的所有先前示例在CASE语句周围都使用了SUM()之类的东西,所以我想那是聚合函数。我尝试使用FIRST():( ^$ R# m4 e: Q4 y; T# v2 |- G* u$ L+ r
select $ C9 H. z! }( R& ~5 G
acc2tax_node.acc,
8 c% n1 H$ J2 m3 mFIRST(CASE tax_node.rank WHEN 'species' THEN tax_node.name ELSE NULL END) as sp,
1 \6 }) k) A5 n* ]# n: j- {FIRST(CASE tax_node.rank WHEN 'phylum' THEN tax_node.name ELSE NULL END) as ph + `+ T" E a' B; M1 k/ v
from tax_node, acc2tax_node where tax_node.taxid=acc2tax_node.taxid and acc2tax_node.acc='AJ012531' group by acc2tax_node.acc;
! [) K ^1 I% ~但得到错误:% `2 T' I) w+ n3 T+ U
ERROR: function first(character varying) does not exist1 p* B/ ^ j7 W# [
谁能提供任何提示?
! I; j% D* B, b' u1 ^ 4 R! o5 s8 n2 X) V
解决方案:
' y/ Y0 L, t' I3 E/ `' ^* ^
/ e0 L3 U! a8 [& g4 @
) d% E- ~* g$ S. G" [: ]4 t$ b! x& z, x2 n9 Q) H
使用MAX()或MIN(),而不是FIRST()。在这种情况下,每个组值在列中将具有所有NULL,但最多只有一个不为null的值。根据定义,这是该组值的MIN和MAX(排除所有空值)。 |
|