gpt4 book ai didi

mysql - 单表特定单元格之间的SQL计算

转载 作者:行者123 更新时间:2023-11-29 12:26:46 25 4
gpt4 key购买 nike

我有一个如下所示的 SQL 表: My table

我想运行一个计算,返回某些计算成立的所有单元格。

例如,我会运行如下内容:

Select group, alonecombo, statistic
where tablenumber = "B3002"
AND geoname = "Alabama"
FROM table1

我需要添加一个条件,例如:WHERE totalpop > 100000(总pop的统计值)

任何帮助将不胜感激。

最佳答案

您只需在 where 子句中添加另一个条件即可:

Select group, alonecombo, statistic
where
tablenumber = "B3002"
AND geoname = "Alabama"
and (group = "totalpop" and statistic > 100000)
FROM table1

关于mysql - 单表特定单元格之间的SQL计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28200973/

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