gpt4 book ai didi

mysql - 使用 MySQL 查询的结果作为下一个的 WHERE 子句

转载 作者:行者123 更新时间:2023-11-29 10:09:10 25 4
gpt4 key购买 nike

我想使用以下 MySql 查询作为主查询中 WHERE 子句的输入,但我找不到正确的方法来执行此操作。我可以使用任何网站或示例来学习如何执行此操作吗?

代码如下:

主要查询:

SELECT *, IF(SubQuery is true, 'Yes', 'No') AS Watched Distribution
FROM account
WHERE Watched Distribution LIKE 'Yes'

子查询:

SELECT account_id, IF(w.main_title RLIKE 'place holder for film 
titels|nextfilm|nextfilm', 'Distribution', 'Non-distribution') AS Distribution
FROM watched w
WHERE Distribution LIKE 'Distribution'

最佳答案

尝试使用 JOIN 运算符和 where 子句,如下所示:

SELECT a.*, 'Yes'
FROM account a
JOIN watched w on w.account_id = a.account_id
where 'Distribution' in (IF(w.main_title RLIKE 'place holder for film
titels|nextfilm|nextfilm', 'Distribution', 'Non-distribution'))

参见下面的示例:

https://www.sitepoint.com/community/t/mysql-question-how-to-us-an-as-field-in-the-where-clause/1188/5

关于mysql - 使用 MySQL 查询的结果作为下一个的 WHERE 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51323005/

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