gpt4 book ai didi

sql - 如何创建 "filter by price"类型的查询?

转载 作者:行者123 更新时间:2023-12-04 14:11:51 25 4
gpt4 key购买 nike

我正在使用 VBScript(经典 ASP)和 SQL Server;我正在尝试在网站上设置一个部分,您可以在其中查看特定价格水平的产品数量。像这样的东西:

$50 - $100 (4)
$100 - $500 (198)
$500 - $1000 (43)

看在我的份上,我想不出一个好的方法来进行这样的查询。我的意思是......我知道如何在特定价格范围内获得产品数量,但我无法弄清楚如何在几个不同的价格范围内做到这一点,而不必编写大量嵌套查询来汇总所有结果,特别是因为相关产品的价格范围可能差异很大。

做这样的事情时,是否有关于如何计算不同价格范围的“经验法则”?

最佳答案

在 SQL 中执行此操作的最有效方法(我相信)是使用 sum case 构造:

select  sum(case when Price >= 50 and Price < 100 then 1 else 0 end) as 50to100,
sum(case when Price >= 100 and Price < 500 then 1 else 0 end) as 100to500,
sum(case when Price >= 500 and Price < 1000 then 1 else 0 end) as 500to1000
from Products

这只需要对表进行一次扫描。

关于sql - 如何创建 "filter by price"类型的查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/484036/

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