在BigQuery中,我们可以使用WHERE子句来过滤掉聚合操作中不想要的值。以下是一个示例查询,其中对"transactions"表进行了聚合,并筛选出了"amount"大于100的交易:
SELECT
customer_name,
SUM(amount) as total_amount
FROM
transactions
WHERE
amount > 100
GROUP BY
customer_name
ORDER BY
total_amount DESC
在此示例中,我们使用了WHERE子句来使聚合操作仅考虑"amount"大于100的交易。然后使用GROUP BY来按"customer_name"聚合,并使用SUM函数计算每个客户的"total_amount"。最后,我们使用ORDER BY按"total_amount"从高到低排序结果。
请注意,WHERE子句必须在GROUP BY子句之前使用,否则它可能会过滤掉Group By中需要的值。