0

我将两个表(作者和书籍)与表“书籍作者”链接。

“书籍作者”表包含 BookAuthorID、AuthorID 和 BookID,这意味着我可以拥有来自同一作者等的多本书,并且匹配它们是轻而易举的事。

不幸的是,我弄乱了作者表的 ID 字段,并创建了一个新的主要和自动增量字段。现在我需要用新的 id 填充“图书作者”表中的匹配列,将它们与旧的匹配。

我有以下功能来更新“书籍作者”表......

function update_id($BookAuthorID, $NewAuthorID) {
$result = mysql_query("UPDATE `book authors` SET NewAuthorID='$NewAuthorID' WHERE BookAuthorID='$BookAuthorID'") or trigger_error(mysql_error()); }

知道这个函数可以工作,因为我通过使用函数和两个示例变量($BookAuthorID、$NewAuthorID)创建一个空白页来测试它,并且它正确更新了表格。

现在我有以下代码,它找到每个作者的每个实例,然后每本书上的 foreach 循环匹配 ids...

$result = mysql_query("SELECT * FROM authors");

while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
    $AuthorID= $row["AuthorID"];

    $match = get_books($BookID);

    foreach ($match as $value) {    
        update_id($value["BookAuthorID"], $value["NewAuthorID"]);
    } 
}

get_books 功能如下,适用于网站的其余部分......

function get_books($id) {
    $result = mysql_query("SELECT * FROM `book authors` WHERE AuthorID= $id") or trigger_error(mysql_error());
    $array = array();

    while($row_ids = mysql_fetch_assoc($result)){
        $array[] = $row_ids;
    }
return $array; 
}

我无法弄清楚为什么该函数在 foreach 循环之外工作,但在内部什么也没做(并且没有产生错误)。

4

1 回答 1

2

你不能做这样的事情:

UPDATE `book authors`, authors 
SET `book authors`.newauthorid = authors.newauthorid 
WHERE `book authors`.authorid = authors.authorid;

而不是循环?

于 2012-09-18T19:57:22.417 回答