本文介绍了使用WHERE子句将数组传递给查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给出一个ID数组$galleries = array(1,2,5)
我想要一个SQL查询,该查询使用其WHERE子句中的数组值,例如:
Given an array of ids $galleries = array(1,2,5)
I want to have a SQL query that uses the values of the array in its WHERE clause like:
SELECT *
FROM galleries
WHERE id = /* values of array $galleries... eg. (1 || 2 || 5) */
如何生成用于MySQL的查询字符串?
How can I generate this query string to use with MySQL?
推荐答案
$ids = join("','",$galleries);
$sql = "SELECT * FROM galleries WHERE id IN ('$ids')";
这篇关于使用WHERE子句将数组传递给查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!