PostgreSQL - 如何根据 PSQL 视图中的公共唯一标识符将 NULL 值替换为来自另一列的值

PostgreSQL - How can I replace NULL values with values from another column based on a common unique identifier in a PSQL VIEW

我的 PSQL 视图中有三个外部标识符。我如何根据它们的共同 first_id 将 NULL second_id 值替换为 third_id 值?

目前:


 first_id | second_id | third_id 
----------+-----------+----------
        1 |           |      11
        1 |           |      11
        1 |           |      11
        1 |        22 |      22
        2 |        33 |      33
        3 |        44 |      44
        4 |        55 |      55
        5 |        66 |      66
        6 |           |      77
        6 |           |      77
        6 |           |      77
        6 |           |      77
        6 |        88 |      88

应该是:


 first_id | second_id | third_id 
----------+-----------+----------
        1 |        22 |      11
        1 |        22 |      11
        1 |        22 |      11
        1 |        22 |      22
        2 |        33 |      33
        3 |        44 |      44
        4 |        55 |      55
        5 |        66 |      66
        6 |        88 |      77
        6 |        88 |      77
        6 |        88 |      77
        6 |        88 |      77
        6 |        88 |      88

我该如何进行更改?

  • 应填写 second_id 列中的 NULL 值,即不应有空白单元格。
  • 如果 second_id 列与 third_id 列共享一个值,则该值应填充 second_id 列中的空白单元格。
  • 他们应该都基于他们共同的first_id。
  • 非常感谢。非常感谢。


    second_id 实际上是 third_idCASE WHEN 修改。这个修改是在视图中进行的。

    查看:

        View "public.my_view"
                   Column            |            Type             | Modifiers | Storage  | Description 
        -----------------------------+-----------------------------+-----------+----------+-------------
         row_number                  | bigint                      |           | plain    | 
         first_id                    | integer                     |           | plain    | 
         second_id                   | integer                     |           | plain    | 
         third_id                    | integer                     |           | plain    | 
         first_type                  | character varying(255)      |           | extended | 
         date_1                      | timestamp without time zone |           | plain    | 
         date_2                      | timestamp without time zone |           | plain    | 
         date_3                      | timestamp without time zone |           | plain    | 
        View definition:
         SELECT row_number() OVER (PARTITION BY t.first_id) AS row_number,
            t.first_id,
                CASE
                    WHEN t.localization_key::text = 'rq.bkd'::text THEN t.third_id
                    ELSE NULL::integer
                END AS second_id,
            t.third_id,
            t.first_type,
                CASE
                    WHEN t.localization_key::text = 'rq.bkd'::text THEN t.created_at
                    ELSE NULL::timestamp without time zone
                END AS date_1,
                CASE
                    WHEN t.localization_key::text = 'st.appt'::text THEN t.created_at
                    ELSE NULL::timestamp without time zone
                END AS date_2,
                CASE
                    WHEN t.localization_key::text = 'st.eta'::text THEN t.created_at
                    ELSE NULL::timestamp without time zone
                END AS date_3
           FROM my_table t
          WHERE (t.localization_key::text = 'rq.bkd'::text OR t.localization_key::text = 'st.appt'::text OR t.localization_key::text = 'st.eta'::text) AND t.first_type::text = 'thing'::text
          ORDER BY t.created_at DESC;
    

    这是视图正在使用的 table 定义的 link (my_table)。

    https://gist.github.com/dankreiger/376f6545a0acff19536d

    再次感谢您的帮助。

    您可以通过以下方式获取:

    select a.first_id, coalesce(a.second_id,b.second_id), a.third_id 
    from my_table a 
    left outer join
        (
        select first_id, second_id from my_table
        where second_id is not null 
        ) b
        using (first_id)
    

    所以更新应该是:

    update my_table a set second_id = b.second_id
      from 
      (
      select first_id, second_id from my_table 
      where second_id is not null 
      ) b
    where b.first_id = a.first_id and a.second_id is null
    

    你不能 UPDATE 底层 table my_table 因为它没有 second_id 列所以你应该让视图以你想要的方式显示数据它。这对于 CTE 来说相当简单:

    CREATE VIEW my_view AS
      WITH second (first, id) AS (
        SELECT first_id, third_id
        FROM my_table
        WHERE t.localization_key = 'rq.bkd')
      SELECT
        row_number() OVER (PARTITION BY t.first_id) AS row_number,
        t.first_id,
        s.id AS second_id,
        t.third_id,
        t.first_type,
        CASE
          WHEN t.localization_key = 'rq.bkd' THEN t.created_at
        END AS date_1,
        CASE
          WHEN t.localization_key = 'st.appt' THEN t.created_at
        END AS date_2,
        CASE
          WHEN t.localization_key = 'st.eta' THEN t.created_at
        END AS date_3
      FROM my_table t
      JOIN second s ON s.first = t.first_id
      WHERE (t.localization_key = 'rq.bkd'
         OR t.localization_key = 'st.appt'
         OR t.localization_key = 'st.eta')
        AND t.first_type = 'thing'
      ORDER BY t.created_at DESC;
    

    这假设 my_table.localization_key = 'rq.bkd' 您确实有 1 个 third_id 值;如果不是,您应该添加适当的限定符,例如 ORDER BY first_id ASC NULLS LAST LIMIT 1 或其他一些 suitable 过滤器。另请注意,CTE 是 JOINed,而不是 LEFT JOINed,假设总是有一对有效的 (first_id, third_id) 没有 NULLs.