我试图从我的数据库表中获得所有评论投票,这些投票属于Promise
变量中的评论(在comment_votes表中称为item_id),并且是>但是,在运行下面的脚本时,我只得到一个投票行(最后一行)。基于下面的数据库表值,我认为我应该有4.做IN()只返回一行还是我做错了什么?
await
答案 0 :(得分:1)
我接近这个的初始方法与你的方法非常相似,就像你失败一样。一个小小的研究表明,这种方法不起作用,因为我们都发现$comments
字符串中的每个项目确实需要它自己的占位符和相关的类型字符串,这导致我:
/* output */
$votes=array();
/* original string of IDS */
$comments='1,3,4,5,6,7,11,12,13';
/* create an array from IDS */
$array=explode(',',$comments);
/* create placeholders for each ID */
$placeholders=implode( ',', array_fill( 0, count( $array ), '?' ) );
/* create a type string for each - all going to be `i` */
$types=implode( '', array_fill( 0, count( $array ), 'i' ) );
/* create the sql statement */
$sql=sprintf( 'select `id` from `comment_votes` where `vote` > 0 and `item_id` in ( %s );', $placeholders );
/* create the prepared statement */
$stmt = $db->prepare( $sql );
/* Add the type strings to the beginning of the array */
array_unshift( $array, $types );
if( $stmt ){
/* bind types and placeholders - 2nd arg passed by reference */
call_user_func_array( array( $stmt, 'bind_param'), &$array );
/* execute the query */
$result=$stmt->execute();
/* success */
if( $result ){
$stmt->store_result();
$stmt->bind_result( $id );
$rows=$stmt->num_rows;
printf( 'rows found: %d<br />',$rows );
/* add found IDs to output */
while( $stmt->fetch() ) {
$votes[]=$id;
}
/* tidy up */
$stmt->free_result();
$stmt->close();
/* do something with output */
printf( '<pre>%s</pre>', print_r( $votes, true ) );
} else{
exit('Error: No results');
}
} else exit('Error: Prepared statement failed');
答案 1 :(得分:0)
出于某种原因,我无法接受工作。但是,我使用$stmt = $db_conn->connect->prepare("SELECT
ITEM_ID FROM
COMMENT_VOTES WHERE VOTE > 0 AND
ITEM_ID IN ($comment_ids)");