嗨,我正在创建一个带有查询的用户 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”,但它似乎不起作用。我可能做错了什么?
谢谢。