我将两张表(作者和书籍)与“书籍作者”表联系起来。
“book authors”表包含BookAuthorID,AuthorID和BookID,这意味着我可以拥有来自同一作者的多本书等,并且匹配它们是一件轻而易举的事。
不幸的是,我弄乱了authors表的ID字段,并创建了一个新的主要和自动增量。现在我需要使用新的id填充“book authors”表中的匹配列,并将它们与旧的匹配。
我有以下功能来更新“图书作者”表...
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循环与id匹配...
$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循环之外工作,但在内部什么都不做(并且没有生成错误)。
答案 0 :(得分:2)
你不能做类似的事情:
UPDATE `book authors`, authors
SET `book authors`.newauthorid = authors.newauthorid
WHERE `book authors`.authorid = authors.authorid;
而不是循环?