postgresql时的查询案例

Posted

技术标签:

【中文标题】postgresql时的查询案例【英文标题】:query case when postgresql 【发布时间】:2017-05-17 02:41:14 【问题描述】:

我有这样的查询:

select
    case when code=31 then name end as name1,
    case when code=32 then name end as name2
from master where code=31 or partner_id=32

结果是这样的:

我只想制作 1 行但 2 列的值,如上表所示。

有人可以帮助我吗? 谢谢

【问题讨论】:

【参考方案1】:

使用聚合:

select max(case when code=31 then name end) as name1,
       max(case when code=32 then name end) as name2
from master
where code = 31 or partner_id = 32;

【讨论】:

以上是关于postgresql时的查询案例的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQ 连接问题 FATAL: no pg_hba.conf entry for host

Postgresq9.6主从部署

索引postgresql数组列以进行大于/小于比较?

PostgreSQL Json字段作为查询条件案例

Spring 数据存储库将 null 作为 bytea 发送到 PostgreSQL 数据库

PostgreSQL使用函数的多表关联视图在排序时的性能问题