show/hide this revision's text 4 signatures are frowned upon, sorry

I just had to deal with the same and I'll summarize my findings.

  1. The UPDATE table SET X=Y, Y=X approach obviously doesn't work, as it'll just set both values to Y.

  2. Here's a method that uses a temporary variable. Thanks to Antony from the comments of http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/ for the "IS NOT NULL" tweak. Without it, the query works unpredictably. See the table schema at the end of the post. This method doesn't swap the values if one of them is NULL. Use method #3 that doesn't have this limitation.

    UPDATE swap_test SET x=y, y=@temp WHERE (@temp:=x) IS NOT NULL;

  3. This method was offered by Dipin in, yet again, the comments of http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/. I think it’s the most elegant and clean solution. It works with both NULL and non-NULL values.

    UPDATE swap_test SET x=(@temp:=x), x = y, y = @temp;

  4. Another approach I came up with that seems to work:

    UPDATE swap_test s1, swap_test s2 SET s1.x=s1.y, s1.y=s2.x WHERE s1.id=s2.id;

Essentially, the 1st table is the one getting updated and the 2nd one is used to pull the old data from.
Note that this approach requires a primary key to be present.

This is my test schema:

CREATE TABLE `swap_test` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `x` varchar(255) DEFAULT NULL,
  `y` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB;

INSERT INTO `swap_test` VALUES ('1', 'a', '10');
INSERT INTO `swap_test` VALUES ('2', NULL, '20');
INSERT INTO `swap_test` VALUES ('3', 'c', NULL);

Artem
http://beerpla.net
http://twitter.com/ArtemR

show/hide this revision's text 3 added 311 characters in body
  • UPDATE swap_test SET x=y, y=@temp WHERE @temp:=x; works once. After

  • Here's a method that , for some reason it doesn't work anymoreuses a temporary variable. I.eThanks to Antony from the comments of http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/ for the "IS NOT NULL" tweak. Without itswaps , the values once but query works unpredictably. See the table schema at the end of the post. This method doesn't swap the values if run again.

    Edit: Appending IS NOT one of them is NULLlike so: . Use method #3 that doesn't have this limitation.

    UPDATE swap_test SET x = yx=y, y = @temp y=@temp WHERE (@temp := x) @temp:=x) IS NOT NULL; works fine all the time, as suggested

  • This method was offered by Antony Curtis Dipin in, yet again, the comments of http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/.

  • This is I think it’s the most elegant and clean solution. It works with both NULL and non-NULL values.

    UPDATE swap_test SET x=(@temp:=x), x = y, y = @temp;

  • Another approach I came up with that seems to work:

    Essentially, the second 1st table is used here to keep the old data one getting updated and the 1st 2nd one is used to pull the one getting updated. I've run this method a few times and it swapped every time, unlike in part 2old data from.
    INSERT INTO `swap_test` VALUES ('2', 'b', NULL, '20');INSERT INTO `swap_test` VALUES ('3', 'c', '30');

  • show/hide this revision's text 2 added 308 characters in body

    I just had to deal with the same and I'll summarize my findings.

    1. The UPDATE table SET X=Y, Y=X approach obviously doesn't work, as it'll just set both values to Y.

    2. UPDATE swap_test SET x=y, y=@temp WHERE @temp:=x; works once. After that, for some reason it doesn't work anymore. I.e. it swaps the values once but doesn't swap if run again.

      Edit: Appending IS NOT NULL like so: UPDATE swap_test SET x = y, y = @temp WHERE (@temp := x) IS NOT NULL; works fine all the time, as suggested by Antony Curtis in the comments of http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/.

    3. This is the approach I came up with that seems to work:

      UPDATE swap_test s1, swap_test s2 SET s1.x=s1.y, s1.y=s2.x WHERE s1.id=s2.id;

    Essentially, the second table is used here to keep the old data and the 1st one is the one getting updated. I've run this method a few times and it swapped every time, unlike in part 2.
    Note that this approach requires a primary key to be present.

    This is my test schema:

    CREATE TABLE `swap_test` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `x` varchar(255) DEFAULT NULL,
      `y` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    
    INSERT INTO `swap_test` VALUES ('1', 'a', '10');
    INSERT INTO `swap_test` VALUES ('2', 'b', '20');
    INSERT INTO `swap_test` VALUES ('3', 'c', '30');
    

    Artem
    http://beerpla.net
    http://twitter.com/ArtemR

    show/hide this revision's text 1