Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL tauscht Primärschlüsselwerte aus

Verwenden Sie dafür keine temporären Tabellen.

Aus dem Handbuch :

mysql> SELECT * FROM temp_table, temp_table AS t2;
ERROR 1137: Can't reopen table: 'temp_table'

AKTUALISIERUNG:

Tut mir leid, wenn ich es nicht richtig verstehe, aber warum funktioniert ein einfacher Drei-Wege-Austausch nicht?

So:

create table yourTable(id int auto_increment, b int, primary key(id));

insert into yourTable(b) values(1), (2);
select * from yourTable;

DELIMITER $$
create procedure pkswap(IN a int, IN b int)
BEGIN
select @max_id:=max(id) + 1 from yourTable;
update yourTableset [email protected]_id where id = a;
update yourTableset id=a where id = b;
update yourTableset id=b where id = @max_id;
END $$
DELIMITER ;

call pkswap(1, 2);

select * from yourTable;