dongshi949737 2017-02-01 12:55
浏览 312
已采纳

ORDER BY FIELD(id,?)无法在PDO中工作

I am trying to execute a query that shows only articles inside this array $res. It contains article IDs

$res = Array ( [0] => 42 [1] => 41 );

$res1 = $res;
$res2 = $res;

$Search = $db->prepare("
    SELECT * FROM articles
    WHERE id IN :res1
    ORDER BY FIELD(id, :res2);
");

$Search->execute([
    ':res1' => $res1,
    ':res2' => $res2
]);

but it is returnig this error

Fatal error: Uncaught PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '? ORDER BY FIELD(id, ?)' at line 2 in C:\xampp\htdocs\index.php:16 Stack trace: #0 C:\xampp\htdocs\index.php(16): PDO->prepare(' \t\t\tSELECT * F...')

  • 写回答

2条回答 默认 最新

  • douaoli5328 2017-02-01 14:09
    关注

    You're trying to pass an array as a parameter. That won't work. Also, IN takes a comma separated list inside parentheses, and that's not how to declare an array in PHP.

    $res = [42, 41];
    
    $params = array_merge($res, $res);
    // build a big list of question marks
    // for a two element array we get ?,?
    $placeholder = trim(str_repeat("?,", count($res)), ",");
    
    $Search = $db->prepare("
        SELECT * FROM articles
        WHERE id IN ($placeholder)
        ORDER BY FIELD(id, $placeholder);
    ");
    
    $Search->execute($params);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部