我想在 PostgreSQL 的同一列中从另一个品牌中删除一些与一个品牌相关的客户

Posted

技术标签:

【中文标题】我想在 PostgreSQL 的同一列中从另一个品牌中删除一些与一个品牌相关的客户【英文标题】:I want to remove some customers associated with one brand from other brand in same column in PostgreSQL 【发布时间】:2020-09-28 12:13:24 【问题描述】:

我需要在最终输出中从品牌中删除存在于 x 和 y 品牌中的客户

Customer_id |brand 
   1        | a
   2        | a
   3        | a
   4        | a
   1        | x
   3        | y
   5        | z

最终输出应该是这样的 -

Customer_id |brand

   2        | a
   4        | a
   1        | x
   3        | y
   5        | z

【问题讨论】:

【参考方案1】:

你可以使用exists:

select t.*
from mytable t
where brand <> 'a' or not exists (
    select 1 from mytable t1 where t1.customerid = t.customerid and t1.brand <> 'a'
)

或者,您可以使用窗口函数:

select
from (
    select t.*, bool_and(brand = 'a') over(partition by customerid) has_only_a
    from mytable t
) t
where brand <> 'a' or has_only_a

【讨论】:

以上是关于我想在 PostgreSQL 的同一列中从另一个品牌中删除一些与一个品牌相关的客户的主要内容,如果未能解决你的问题,请参考以下文章

前嗅教程:同一个网站中从另一页面采集数据

如何从另一个项目列表中过滤一个项目列表?

我需要使用索引和匹配从另一列条件匹配的列中提取数据

我需要使用索引和匹配从另一列中的条件匹配的一列中提取数据

如何在 Java 中从另一个构造函数调用一个构造函数?

从另一列的子字符串更新一列