gpt4 book ai didi

mysql - 在 where 子句 MySql 中使用嵌套选择查询

转载 作者:行者123 更新时间:2023-11-29 00:16:44 24 4
gpt4 key购买 nike

你好,我有一个非常古老且庞大的查询,它是这样的:

select id, someValue, (select x from y inner join x on x.y = y.zzz) as filter

现在我需要像

这样过滤传递的变量
select id, someValue, (select x from y inner join x on x.y = y.zzz) as filter
WHERE filter not 'badPractise'

有什么方法可以在不在 where 子句中进行相同连接的情况下使用它?

最佳答案

是的,您可以使用 HAVING 子句来过滤掉您的过滤列

select id, someValue, 
(select x from y inner join x on x.y = y.zzz) as filter
FROM ....
HAVING filter <> 'badPractise'

关于mysql - 在 where 子句 MySql 中使用嵌套选择查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22711984/

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