如果已经回答请原谅。我看了很多其他的问题,没有一个是有帮助的!基本上,我想把一行从一个表复制到另一个表。我遇到的问题是,我要复制的行的id已经在使用中,在我要复制到的表中。这就是我目前所拥有的,它工作,直到它解决这个问题。
INSERT INTO venues SELECT * FROM submitted_venues WHERE id='9';
它生成错误:键“id”的条目“9”重复
有没有一种方法可以动态地更改id号,以便为接收表创建一个未使用的新编号,或者我必须编写一个查询来命名和获取每个表的所有字段。像replace语句0这样的例子就很好了,其中0创建了一个新记录!!
9,只是我在这个例子中使用的一个数字,当然它会改变。
编辑:
我已经为这个问题创建了一个解决方案。
//get highest id number of table to copy to
$sql = "SELECT id FROM venues ORDER BY id DESC LIMIT 1";
if( $result = mysqli_query( $mysqli, $sql ) ){
$row = mysqli_fetch_array($result);
$to_id = $row[ 0 ];
//increase id
$to_id ++;
//get highest id number of table to copy from
$sql = "SELECT id FROM submitted_venues ORDER BY id DESC LIMIT 1";
if( $result = mysqli_query( $mysqli, $sql ) ){
$row = mysqli_fetch_array($result);
$from_id = $row[ 0 ];
//increase id
$from_id ++;
//get highest unused id number
$temp_id = $to_id > $from_id ? $to_id : $from_id;
//update existing record to ensure that its id number will not conflict
$sql = "UPDATE submitted_venues SET id = '$temp_id' WHERE id='$current_venue_id'";
if( $result = mysqli_query( $mysqli, $sql ) ){
$current_venue_id = $temp_id;
//copy record to normal regular venues table
$sql = "INSERT INTO venues SELECT * FROM submitted_venues WHERE id='$current_venue_id'";
if( ! $result = mysqli_query( $mysqli, $sql ) )
die("Could not copy -> " . mysqli_error($mysqli) );
//delete record from temp db table
$sql = "DELETE FROM submitted_venues WHERE id='$current_venue_id'";
if( ! $result = mysqli_query( $mysqli, $sql ) )
die("Could not delete -> " . mysqli_error($mysqli) );
}
}
}
暂无答案!
目前还没有任何答案,快来回答吧!