gpt4 book ai didi

多行条件下的mysql不同列

转载 作者:可可西里 更新时间:2023-11-01 07:33:14 25 4
gpt4 key购买 nike

我有一个带有下表的 mysql 数据库 (item_preset):

+-----+-----------+---------+-------+ 
| id | preset_id | item_id | value |
+-----+-----------+---------+-------+
| 1 | 1 | 1 | 2 |
| 2 | 1 | 2 | 1 |
| 3 | 1 | 4 | 60 |
| 4 | 1 | 3 | 16 |
| 5 | 1 | 3 | 17 |
| 6 | 1 | 3 | 18 |
| 7 | 1 | 3 | 25 |
| 8 | 1 | 3 | 26 |
| 9 | 1 | 3 | 27 |
| 10 | 2 | 1 | 3 |
| 11 | 2 | 2 | 0 |
| 12 | 2 | 4 | 0 |
| 13 | 2 | 3 | 16 |
| 14 | 2 | 3 | 17 |
| 15 | 2 | 3 | 19 |
| 16 | 2 | 3 | 20 |
| 17 | 2 | 3 | 21 |
| 18 | 3 | 1 | 2 |
| 19 | 3 | 2 | 0 |
| 20 | 3 | 4 | 0 |
| 21 | 3 | 3 | 25 |
| 22 | 3 | 3 | 28 |
| 23 | 4 | 1 | 1 |
| 24 | 4 | 2 | 1 |
| 25 | 4 | 4 | 120 |
| 26 | 4 | 3 | 16 |
| 27 | 4 | 3 | 17 |
| 28 | 4 | 3 | 18 |
| 29 | 4 | 3 | 22 |
| 30 | 4 | 3 | 23 |
| 31 | 4 | 3 | 24 |
| 32 | 6 | 1 | 3 |
| 33 | 6 | 2 | 1 |
| 34 | 6 | 4 | 90 |
| 35 | 6 | 3 | 18 |
| 36 | 6 | 3 | 22 |
| 37 | 6 | 3 | 23 |
| 38 | 6 | 3 | 24 |
| 39 | 6 | 3 | 29 |
| 40 | 6 | 3 | 30 |
+-----+-----------+---------+-------+

我想做的是根据来自多行的条件获取不同的 preset_id。例如,要获得 preset_id 1,我需要所有条件都为真(item_id = 1 和 value_id = 2),(item_id = 2 和 value = 1),等等......

我试过使用以下方法:从 item_preset 中选择不同的 preset_id,其中 (item_id = 1 and value = 2) and (item_id = 2 and value = 1) and (item_id = 4 and value = 60);

但得到一个空集。如果我尝试使用 Or 而不是,我会得到所有符合任何条件的 preset_id。

有什么想法吗?

谢谢

最佳答案

你可能想试试这个东西,

SELECT   preset_id
FROM tableName
WHERE (item_id = 1 and value = 2) OR
(item_id = 2 and value = 1) OR
(item_id = 4 and value = 60)
GROUP BY preset_id
HAVING COUNT(*) = 3

SQLFiddle Demo

关于多行条件下的mysql不同列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12926135/

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