如何在WHERE IN(x,y)
PHP 中使用 SQL 语句返回的数据?
$sqlquery = "SELECT * FROM schedules WHERE userid IN ('35','101','45')";
if ($test_stmt=$mysqli->prepare($sqlquery)) { //Get all data in schedule row
$test_stmt->execute(); //Execute the prepared query
$test_stmt->store_result(); //Store result
$test_stmt->fetch();
do something...
}
else {
return null;
}
}
SQL 查询返回正确的三个表行,我只是不确定如何使用 PHP 访问它们。
如何创建一个数组来存储查询返回的值?还是有更好的方法来存储这些数据以供以后操作?
谢谢