gpt4 book ai didi

sql - 从 db sql 查询中选择

转载 作者:行者123 更新时间:2023-12-04 18:11:24 24 4
gpt4 key购买 nike

我有这个查询:

$query = mysql_query ("SELECT *
FROM saledb.application
WHERE app_id = (
SELECT app_id
FROM saledb.applicationdetails
WHERE is_hot = '1'
) LIMIT $Kvet,$Zet
");

我有以下错误:

Unable to save result set in /home/lemondo/lemondosales.itnovations.ge/content/tpl/gtpl/main.php on line 68



当我用 MAX(app_id) 更改选择项时,它可以工作,但我需要显示所有结果。我知道问题 mysql 无法在一个查询中选择多个 ID,但我需要替代查询。

最佳答案

使用 IN谓词而不是 =像操作系统:

SELECT * 
FROM saledb.application
WHERE app_id IN
(SELECT app_id
FROM saledb.applicationdetails
WHERE is_hot = '1');

关于sql - 从 db sql 查询中选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12582047/

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