我有一个包含许多语句的 sql 查询。它:
- 设置用户变量
- 调用存储过程
- 调用另一个存储过程
- 选择一些数据
我知道查询是正确的,因为我已经在 MySQL Workbench 中以同一用户对其进行了测试。查询是这样的:
set @current_post = 535; /* 535 for testing, this will be a variable */
call under_user_type(@currrent_post, @user_type, @user_id);
call get_category(@current_post, @category);
select p.post_title, p.post_name,
(
swell_wp.post_score(p.ID)
) as score,
(
swell_wp.is_under_user(p.ID, @user_type, @user_id)
) as under_user,
(
swell_wp.is_under_category(p.ID, @category)
) as under_category
from wp_posts as p
where p.post_type = 'post'
and p.id != @current_post
and p.post_status = 'publish'
having (
under_user = true
or under_category = true
)
order by score desc;
那只是存储在一个字符串中:$sql
. 然后我在 PHP 中使用它:
$query = new MySQLi(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
$query->multi_query($sql);
do {
$query->next_result();
} while( ! $result = $query->use_result() );
print_r($result);
这会打印一个结果对象,但它是空的。尝试迭代它也不会产生任何结果。
我究竟做错了什么?我什至可以使用这样的用户变量吗?或者我是否需要将过程转换为存储函数并执行三个单独的查询?