gpt4 book ai didi

SQL - 查找行之间的值

转载 作者:行者123 更新时间:2023-12-04 21:50:27 25 4
gpt4 key购买 nike

我有 2 个表:

  • Employee 表包含 2 列 NameSales
  • Rewards 表,包含 2 列 BonusRange

示例数据:

Employee                     Rewards

| Name | Sales | | Bonus | Range |
+------+-------+ +-------+-------+
| John | 112 | | 2 | 200 |
| Mary | 201 | | 3 | 300 |
| Joe | 400 | | 5 | 500 |
| Jack | 300 |

如果每个员工的销售额 <= Rewards.Range,他都应该从 Rewords 表中获得奖金。

我想选择 Employee.NameRewards.Bonus

在这种情况下,结果应该是:

| Name | Bonus |
+------+-------+
| John | 2 |
| Mary | 3 |
| Joe | 5 |
| Jack | 3 |

知道这个 SQL 查询是什么吗?

谢谢,zb

最佳答案

我建议采用这种方法。可能存在一两个语法错误。

select name
, (select bonus from rewards
where range =
(select min(range)
from rewards
where range >= sales)
)
from employee

关于SQL - 查找行之间的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46854577/

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