欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php?数据库查询

程序员文章站 2022-05-14 23:13:47
...
 $id=array(23,24); $sql =" select `series_title` FROM ca_series where id in $id";//我想查id在23,24里的内容echo $sql;输出的效果:select `series_title` FROM ca_series where id in Array想要的效果:select `series_title` FROM ca_series where id in (23,24);


回复讨论(解决方案)

你只是查的整个数组吧,并没有具体数组里的某个值。

$id = array(23,24);
$in = join(',', $id);
$sql = "select `series_title` FROM ca_series where id in ( $in)";

相关标签: php?数据库查询