English 中文(简体)
如何在 PostgreSQL 中有条件地拉出特定字段
原标题:How to pull specific fields conditionally in PostgreSQL

不知道该怎么说 但希望有人能帮上忙

我有一张T表,它有以下字段:

ID      CF    Value
------------------------
976     13    Severity 1
978     36    branch a  
978     13    severity 1

我想拔出具有属性分支A和重度1的物品。

问题是,数值字段用于分支和严重程度,仅按13或36的不同的CF值加以区分,如果一个项目具有两个属性,则给予重复的条目(例如,上文ID 978)。

所以我无法从 D 中选择值 = 分支 a 和 值 = 严重性 1 的值 。

我想做的是一个选择 - A - 从下面的字段

ID   Branch   Severity

如果参考 = 36,则将值字段拉入分支,如果参考 = 13,则将值拉入分支,如果参考 = 13,则将值拉入严重性。

但我不知道我该如何做这个术语。我试过几个案例,如果声明,但总是有错误。

任何帮助 非常感谢。

谢谢

问题回答

在必须处理这种模式时,采用枢轴的标准做法是:

select id, 
       max(branch) as branch,
       max(severity) as severity
from (
    select id, 
           case 
             when cf = 36 then value
             else null
           end as branch,
           case 
             when cf = 13 then value
             else null
           end as severity
    from t
) p
group by id

这种类型的“设计”被称为“实体属性价值”模式,正如Catcall已经指出的,它被认为是一种反模式。 这正是检索事物的复杂方式。

如果你在互联网上搜索这个词, 你会得到很多点击。

在 PostgreSQL 中,您也可以使用表格func 模块中的交叉标签函数,该模块基本上在函数中动态生成上述语句。

http://www.postagresql.org/docs/text/static/tablefunc.html" rel=“no follow'>http://www.postagresql.org/docs/text/static/tablefunc.html

使用 rosttab 函数时, 查询会看起来是这样 :

SELECT *
FROM crosstab(
   select id, cf, value
   from t
   where cf in (13,36)
   order by 1,2 ::text)
AS ct(id integer, severity text, branch text);

你可以这样拿到身份证号码

select id
from your_table
where value =  branch a 
   or value =  Severity 1 
group by id
having count(id) = 2

但一般而言,你会发现任何更复杂的事情都会把你绑在绳子上。 这种结构是众所周知的反模式,不是意外。

您可以使用这种模式做简单的操作 :

select id from t where cf = 36 and value =  branch a 
intersect
select id from t where cf = 13 and value =  severity1 

Catcall 已经指出过, 这个系统在一段时间后可能会变得非常不易操作。 如果 T 中的 ID 值指某些实体表 E, 那么您就可以创建像这样的视图 :

create view e_attrs as
select e.id, t_36.value as branch, t_13.value as severity
from e
     left join t t_36 on t_36.id = e.id and t_36.cf = 36
     left join t t_13 on t_13.id = e.id and t_13.cf = 36

然后希望联合消除(从后Gresql 9.1中,我想)将消除与T无关的反对T的结合,如果你们对此观点有疑问的话。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签