哪里有问题,不要在SubQuery中工作

时间:2019-04-08 09:26:45

标签: mysql sql where where-clause

我在SQL查询中需要帮助。

在我进行这样的查询之前

select * from reklamation where id_marke='112' and aktiv='1' and status='0'

但是现在状态列ist在另一个表中(reklamation_status)。

我尝试过这样

SELECT id, aktiv, id_marke, (SELECT reklamation_status.status
                             FROM reklamation_status
                             WHERE reklamation_status.id_reklamation = reklamation.id
                             ORDER BY reklamation_status.id DESC
                             LIMIT 1 ) as status
FROM reklamation
WHERE id_marke = '112' and aktiv = '1' and status = '0'

但是where status ='0'无效。

有人可以帮助我吗?对不起,我的英语不好。

0 个答案:

没有答案