动态SQL命令

时间:2018-06-25 01:40:18

标签: php mysql sql

我希望只能获取多列中有“ 1”的值。 我的列名称虽然动态存储在变量中。 我该怎么办?

这就是我所拥有的。 这样布置列
$Columns = "Computer, Science, Algebra, Biology, Networking";
//This is Dynamic so $Columns may be like this next time
$Columns = "Biology, Networking";
$SQL = "SELECT * FROM users WHERE '1' IN(".$Columns.")";

现在,它选择在任何列中具有“ 1”的所有用户

我只想检索ALL数组中的变量$Columns中具有“ 1”的用户,而不仅仅是其中之一

1 个答案:

答案 0 :(得分:0)

由于$ columns变量的大小可以不同,因此需要基于for循环中数组的列数来构建sql语句:

// SET your first column IN
$sql = "SELECT * FROM users WHERE '1' IN (".$Columns(0).")"

//Run the for loop to build sql on all subsequent columns
// size of will give you the number of columns in your array
$max = sizeof($columns);
for($i = 1; $i < $max;$i++)
{
//Use the "AND" to make sure "1" is in all columns
$sql.=" AND '1' IN (".$Columns($i).")
}

$sql.=";"

我的代码可能并不完美,但是应该可以为您提供正确的方向。