gpt4 book ai didi

mysql - 在 MySQL 中选择分组

转载 作者:行者123 更新时间:2023-11-29 02:06:16 27 4
gpt4 key购买 nike

我有 2 个表:

'支付'

|id_tax|value|id_currency|
--------------------------
|1 |100 |12 |
|1 |200 |12 |
|1 |300 |13 |
|2 |200 |12 |
|2 |200 |12 |
--------------------------

'评分'

|id_currency|rate|
------------------
|12 |1 |
|13 |6,12|
------------------

什么 SQL 查询会产生这个结果?

|id_tax|value               |
-----------------------------
|1 |100*1+200*1+300*6,12|
|2 |200*1+200*1 |
-----------------------------

最佳答案

SELECT  id_tax, SUM(value * rate)
FROM pay p
JOIN rate r
ON r.id_currency = p.id_currency
GROUP BY
id_tax

关于mysql - 在 MySQL 中选择分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5462668/

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