gpt4 book ai didi

php - MySQL左连接问题

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

$sQuery = '
SELECT DISTINCT SQL_CALC_FOUND_ROWS IF( `Profiles`.`Couple`=0,
`Profiles`.`ID`, IF( `Profiles`.`Couple`>`Profiles`.`ID`, `Profiles`.`ID`,
`Profiles`.`Couple` ) ) AS `ID` FROM `Profiles`';


$sCountries = implode("','", $mValue);
$sJoin .= " LEFT JOIN `hm_locations` ON (`hm_locations`.`country` IN '".$sCountries."'
AND `hm_locations`.`profileID` = `Profiles`.`ID`) ";

这个查询收集了不同的函数,然后与另一个函数放在一起,但我基本上想知道如何重写 LEFT JOIN 部分才能正常工作。

我正在尝试在此处添加我自己的左连接,以便搜索将从与搜索匹配的国家/地区的 hm_locations 中获取 ID。

我只需要 LEFT JOIN 部分的帮助,因为这是唯一不起作用的部分。

非常感谢

最佳答案

您需要将您的国家/地区放在括号中:

"... `hm_locations`.`country` IN ('".$sCountries."') ..."

关于php - MySQL左连接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4793814/

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