本文介绍了如何在php/mysql中使用数组变量到mysql查询中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个这样的数组变量
I have an array variable like this
$variable[] = $data['master_software_capability_id'];
如何在 SQL 查询中使用这个数组变量
How to use this array variable in SQL query
这是正确的方法吗?
SELECT * FROM software_capability where software_capability_id IN ($variable);
推荐答案
您需要将数组内爆为逗号分隔的字符串
You need to implode the array to comma separated string
$variables_imploded = implode(",",$variable);
"SELECT *
FROM software_capability
where software_capability_id IN
(".$variables_imploded.")";
这篇关于如何在php/mysql中使用数组变量到mysql查询中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!