gpt4 book ai didi

php - 如何在mysql中的一个表中显示2个不同的数据(两个条件)

转载 作者:行者123 更新时间:2023-11-29 05:54:22 28 4
gpt4 key购买 nike

我在 php mysql 中显示不同的数据时遇到了问题。我想在两种情况下显示不同的数据。例如:

我有 table :

tbl_hresponse

| id_reponse | id_atribut | skala | step |
| 1 | 1 | 1 | 1 |
| 1 | 2 | 4 | 1 |
| 1 | 3 | 2 | 1 |
| 1 | 1 | 5 | 2 |
| 1 | 2 | 6 | 2 |
| 1 | 3 | 2 | 2 |

所以,我想这样输出:

| id_reponse | id_atribut | skala step 1 | skala step 2 |
| 1 | 1 | 1 | 5 |
| 1 | 2 | 4 | 6 |
| 1 | 3 | 2 | 2 |

我有这样的代码:

$k = $db->pdo->prepare("select *, (CASE WHEN tbl_hresponder.step = '1' THEN tbl_hresponder.skala END) AS k,
(CASE WHEN tbl_hresponder.step = '2' THEN tbl_hresponder.skala END) AS q
from tbl_hresponder, tbl_atribut
where tbl_hresponder.id_atribut = tbl_atribut.id_atribut
AND tbl_hresponder.id_responder = '".$_GET['report']."'
AND tbl_hresponder.id_fservqual = '".$rfs['id_fservqual']."'
AND tbl_hresponder.step = 1");

最佳答案

您可以尝试使用CASE WHENmax 函数。

SELECT t1.id_reponse,
t1.id_atribut,
max(case when t1.step = 1 then t1.skala end) `skala step 1`,
max(case when t1.step = 2 then t1.skala end) `skala step 2`
FROM tbl_hresponse t1
GROUP BY
t1.id_reponse,
t1.id_atribut

sqlfiddle:http://sqlfiddle.com/#!9/92a73e/4

结果

| id_reponse | id_atribut | skala step 1 | skala step 2 |
|------------|------------|--------------|--------------|
| 1 | 1 | 1 | 5 |
| 1 | 2 | 4 | 6 |
| 1 | 3 | 2 | 2 |

关于php - 如何在mysql中的一个表中显示2个不同的数据(两个条件),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51113073/

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