注意到一个相当大的问题。当我连接两个表时,在这两个表中都存在一个名为ID的列这一事实导致错误的表ID在以后的PHP方法中使用。
简单的解决方案是更改列名,但是在数据库中还有其他标准,包括每个表中名为name的列和许多表中的标题。
有没有解决方法或者我应该重命名整个数据库以确保没有重复的列。
参考代码
$criteria = "SELECT *
FROM voting_intention,electors
WHERE voting_intention.elector = electors.ID
AND electors.postal_vote = 1
AND voting_intention.date = (select MAX(date)
from voting_intention vote2
where voting_intention.elector = vote2.elector)
AND electors.telephone > 0"
function get_elector_phone($criteria){
$the_elector = mysql_query("SELECT * $criteria"); while($row = mysql_fetch_array($the_elector)) {
return $row['ID']; }
答案 0 :(得分:0)
mysql_fetch_row
将数据作为数值数组
答案 1 :(得分:0)
我写了这个函数来帮助这样做。基本上,它会将表名前置为关联数组的字段名称。
while($row = mysql_fetch_array($the_elector))
{
return $row['ID'];
}
会变成
while($row = mysql_fetch_table_assoc($the_elector))
{
return $row['voting_intention.ID'];
}
功能:
function mysql_fetch_table_assoc($resource)
{
// function to get all data from a query, without over-writing the same field
// by using the table name and the field name as the index
// get data first
$data=mysql_fetch_row($resource);
if(!$data) return $data; // end of data
// get field info
$fields=array();
$index=0;
$num_fields=mysql_num_fields($resource);
while($index<$num_fields)
{
$meta=mysql_fetch_field($resource, $index);
if(!$meta)
{
// if no field info then just use index number by default
$fields[$index]=$index;
}
else
{
$fields[$index]='';
// deal with field aliases - ie no table name ( SELECT T_1.a AS temp, 3 AS bob )
if(!empty($meta->table)) $fields[$index]=$meta->table.'.';
// deal with raw data - ie no field name ( SELECT 1, MAX(index) )
if(!empty($meta->name)) $fields[$index].=$meta->name; else $fields[$index].=$index;
}
$index++;
}
$assoc_data=array_combine($fields, $data);
return $assoc_data;
}
?>
答案 2 :(得分:0)
虽然“Gunnx”解决方案完全可以接受,但我想提供一个替代方案,因为您似乎只使用了结果的ID列。
SELECT
electors.ID
FROM
voting_intention,electors
....