2

注意到一个相当大的问题。当我将两个表连接在一起时,两个表中都有一个名为 ID 的列会导致稍后在 PHP 方程式中使用错误的表 ID。

简单的解决方案是更改列名,但除了数据库之外还有其他标准,包括每个表中称为名称的列和许多表中的标题。

有没有办法解决这个问题,或者我应该重命名整个数据库以确保没有重复的列。

参考代码

$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']; }     
4

3 回答 3

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;
}

?>
于 2012-06-29T08:19:07.193 回答
0

虽然“Gunnx”解决方案是完全可以接受的,但我想提出一个替代方案,因为您似乎只使用了结果的 ID 列。

SELECT
    electors.ID
FROM
    voting_intention,electors
....
于 2012-06-29T08:25:03.240 回答
0

mysql_fetch_row将以数字数组的形式获取数据

于 2012-06-29T08:15:24.840 回答