调试 SQL 查询结果中缺失的数据

当你的查询返回缺少行或列的数据时,该怎么办。

你的数据在哪里缺失?

缺失的行

在开始之前,确保你知道 源表或嵌套查询的模式

  1. 检查源表或嵌套查询是否有缺失的行。
  2. 查看下面的表格,看看你是否因为连接类型而缺少行。
  3. 检查您在ON子句中的连接条件。例如

    -- The join condition below will filter out
    -- all transactions from the Orders table
    -- where the product category is 'Gizmo'.
    
    SELECT
        *
    FROM
        orders o
        JOIN products p ON o.product_id = p.id
            AND p.category <> 'Gizmo';
    
  4. 检查您的WHERE子句是否与您的JOIN子句交互。例如

    -- The WHERE clause below will filter out
    -- all transactions from the Orders table
    -- where the product category is 'Gizmo'.
    
    SELECT
        *
    FROM
        orders o
        JOIN products p ON o.product_id = p.id
                       AND p.category = 'Gizmo'
    WHERE
        p.category <> 'Gizmo'
    
  5. 如果您想向查询结果中添加行以填充空、零或NULL的数据,请转到如何填充缺失报告日期的数据

如何通过连接过滤掉不匹配的行

连接类型 如果连接条件不满足
A INNER JOIN B 从A和B中过滤出的行。
A LEFT JOIN B 从B中过滤出的行。
B LEFT JOIN A 从A中过滤出的行。
A OUTER JOIN B 从A和B中过滤出的行。
A FULL JOIN B 没有行被过滤。

说明

JOIN子句中表的顺序会影响查询返回的行。

例如,当您编写一个LEFT JOIN时,在查询中先于LEFT JOIN子句的表位于“左边”。如果“右边”的表(在LEFT JOIN子句之后的表)的行没有满足ON子句中的连接条件,则这些行将被过滤。

查询的执行顺序可能会以您意料之外的方式组合您的连接条件和WHERE子句。

进一步阅读

如何填充缺失报告日期的数据

如果您的源表或嵌套查询只存储发生事件的日期的行,您将得到缺少报告日期的结果。

例如,在示例数据库中,Orders表只存储创建订单的日期的行。它不存储任何没有订单活动的日期的行。

-- The query below calculates the total sales
-- for each day that had at least one order.

-- For example, note that there is no row
-- in the query results for May 5, 2016.


SELECT
    DATE_TRUNC('day', o.created_at)::date AS "order_created_date",
    SUM(p.price) AS "total_sales"
FROM
    orders o
    JOIN products p ON o.product_id = p.id
WHERE
    o.created_at BETWEEN'2016-05-01'::date
    AND '2016-05-30'::date
GROUP BY
    "order_created_date"
ORDER BY
    "order_created_date" ASC;

如果您想要以下表格的结果,您需要从具有所有日期(或任何其他序列)的表或列开始您的JOIN。如果可以,请咨询您的数据库管理员是否有可以使用的表。

+--------------------+-------------+
| report_date        | total_sales |
+--------------------+-------------+
| May 4, 2016        | 98.78       |
+--------------------+-------------+
| May 5, 2016        | 0.00        |
+--------------------+-------------+
| May 6, 2016        | 87.29       |
+--------------------+-------------+
| May 7, 2016        | 0.00        |
+--------------------+-------------+
| May 8, 2016        | 81.61       |
+--------------------+-------------+

如果您的SQL方言支持GENERATE_SERIES函数,您可以创建一个临时列来存储您的报告日期。

-- The query below calculates the total sales
-- for every day in the report period,
-- including days with 0 orders.

-- The date_series CTE generates one row
-- per date that you want in your final result.

WITH date_series AS (
    SELECT
        *
    FROM
        GENERATE_SERIES('2016-05-01'::date, '2020-05-30'::date, '1 day'::interval) report_date
)

-- The fact_orders CTE generates the total sales
-- for each date that had an order.

, fact_orders AS (
    SELECT
        DATE_TRUNC('day', o.created_at)::date AS "order_created_date",
        SUM(p.price) AS "total_sales"
    FROM
        orders o
        JOIN products p ON o.product_id = p.id
    GROUP BY
        "order_created_date"
    ORDER BY
        "order_created_date" ASC
)

-- The main query joins the two CTEs together
-- and uses the COALESCE function to fill in the dates
-- where there were no orders (i.e. a total sales value of 0).

SELECT
    d.report_date,
    o.order_created_date,
    COALESCE(o.total_sales, 0) AS total_sales
FROM
    date_series d
    LEFT JOIN fact_orders o ON d.date = o.order_created_date
;

缺失的列

  1. 如果您正在连接数据,请检查您的SELECT语句是否包含您想要的列。
    • 您是否使用了正确的表别名?
    • 您的FROM子句中是否缺少表?
  2. 通过遵循调试SQL逻辑下的第1步来检查您的源表或查询结果中是否有缺失的列。
  3. 了解有关意外查询结果的常见原因的更多信息。

您还有其他问题吗?

您还是卡住了吗?

搜索或向Metabase社区提问。