gpt4 book ai didi

php - 在 PHP MySQL WHERE 子句中使用数组

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

您好,我正在创建一个带有查询的用户 ID 数组。对于另一个查询,我想从给定的表中进行选择,其中 user_id 是从我的第一个查询创建的数组中的一个。如何在我的 WHERE 子句中使用数组?

仅供引用:$row_interest是数组

我的代码:

//Grabs the user id's of the users that have the queried interest
$interest_search_query= "SELECT DISTINCT user_id FROM interests WHERE interest LIKE
'%".$search_term."%'";
$interest_search_result= mysqli_query($connect, $interest_search_query);
$row_interest= mysqli_fetch_array($interest_search_result);

//Grabs the user information with each user id
$search_query= "SELECT DISTINCT user_id, fname, lname, profile_pic, school FROM users
WHERE user_id IN $row_interest";

我试过“WHERE user_id IN $row_interest”,但它似乎不起作用。我可能做错了什么?

谢谢。

最佳答案

$search_query= "SELECT DISTINCT user_id, fname, lname, profile_pic, school FROM users   
WHERE user_id IN (".implode(',',$row_interest).")";

关于php - 在 PHP MySQL WHERE 子句中使用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16825154/

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