gpt4 book ai didi

mysql - 检查这个 MySQL 查询

转载 作者:行者123 更新时间:2023-11-30 23:52:05 25 4
gpt4 key购买 nike

这是我的作业,问题是这样的:

List the average balance of customers by city and short zip code (the first five digits of thezip code). Only include customers residing in Washington State (‘WA’). also the Customer table has 5 columns(Name,Family,CustZip,CustCity,CustAVGBal)

我写了如下查询。这是正确的吗?

SELECT CustCity,LEFT(CustZip,5) AS NewCustZip,CustAVGBal
FROM Customer
WHERE CustCity = 'WA'

最佳答案

没有。因为您截断了邮政编码,所以您将拥有许多重复的记录。您的查询需要考虑到这一点并将它们聚合到一条记录中。此外,您需要一种从邮政编码获取状态的方法(我们是否缺少另一个表)。您可能在问题中遗漏了一列 - 如果表中有状态,请使用它来选择。

关于mysql - 检查这个 MySQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2750193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com