繁体   English   中英

Postgresql SELECT LEFT JOIN,带有大小写列

[英]Postgresql SELECT LEFT JOIN with columns on case

SELECT a1,a2,a3,a4,count(a5),b1,b2,b3
FROM table1
LEFT JOIN table2 ON a1=b1 AND a2=b2 (*here i need to join
              next columns a3=b3 only if from table2 will be returned more than 1 records 
    other wise first 2 columns will be enough*)
group by a1,a2,a3,a4,a5,b1,b2,b3

有人知道如何执行此技巧吗?

好吧,如果我正确理解:

FROM table1 t1 LEFT JOIN
     (SELECT t2.*, COUNT(*) OVER (PARTITION BY b1, b2) as cnt
      FROM table2 t2
     )
     ON t1.a1 = t2.b1 AND t1.a2 = t2.b2 AND
        (cnt = 1 OR t1.a3 = t2.a3)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM