【发布时间】:2016-09-20 09:53:24
【问题描述】:
这是我的代码...
//Database:: find matching results in feeds table
$users_size = $this->holders($this->followed_users_id);
$slugs_size = $this->holders($this->followed_slugs_id);
$match_query = "select * from feeds " .
"WHERE (user_id IN ($users_size)) " .
"OR (target_id IN ($slugs_size) AND feedable_type = 'review') " .
"ORDER BY created_at DESC;";
$result = DB::select($match_query, $this->followed_users_id, $this->followed_slugs_id);
不用担心 (?) 占位符,因为它们是根据要求动态生成的,并且 $this->followed_users_id 和 $this->followed_slugs_id 是数组
结果是这样的
Connection.php 第 655 行中的 QueryException: SQLSTATE[HY093]: 无效的参数号(SQL: select * from feeds WHERE (user_id IN (1,17)) OR (target_id IN (?,?) AND feedable_type = 'review') ORDER BY created_at DESC;)
【问题讨论】:
标签: php mysql laravel eloquent