我正在尝试用户输入#,@或只是普通语句,然后如果搜索结果存在于我的数据库中名为“job”的表的“query”列中,则从SQL数据库中提取这些结果。这是我得到的错误:
Unknown column 'Array' in 'where clause'
这是我的代码:
$result_all = $_POST['result_name'];
$result_all_array= explode(',',$result_all);
$query = "select last_count, query, job_id from twitterinblack46.job where
query in (".$result_all_array.") order by last_count desc;";
$result= mysql_query($query);
if($result === FALSE) {
die(mysql_error());
}
else{
//Sets up table
echo "<table border='1'
<tr>
<th>Job ID</th>
<th>Last Count</th>
<th>Result</th>
</tr>";
//Populates table
while($row = mysql_fetch_array($result)){
echo"<tr>";
echo "<td>" . $row["job_id"] . "</td>";
echo "<td>" . ltrim($row["last_count"],'0') . "</td>";
echo "<td>" . str_replace(array('%23', '%40', '%20', 'q='), array('#','@',' ',''),
$row['query']) . "</td>";
echo "<tr>";
}
echo "</table>";
任何人都知道我做错了什么?
更新
这是混乱,我没有忘记复制$ for查询。 “query”是我想在查询中获取信息的列的名称。所以我要说的是,这两组代码之间有什么区别,为什么它不能用于第一个查询呢?
不起作用的代码:
$result_all= $_POST['result_name'];
$query = "select last_count, query, job_id from twitterinblack46.job where
query in (".$result_all.") order by last_count desc;";
$result= mysql_query($query);
有效的代码:
$job_id_all= $_POST['job_id'];
$query = 'select last_count, query, job_id from twitterinblack46.job where job_id in
('.$job_id_all.') order by last_count desc;';
$result= mysql_query($query);
答案 0 :(得分:0)
这显然是表单输入的问题,例如检查了多个复选框 在两个查询中都尝试这个:
$result_all= implode(',', mysql_escape_string($_POST['result_name']));
$query = "select last_count, query, job_id from twitterinblack46.job where query in (".$result_all.") order by last_count desc;";
$result= mysql_query($query);