Swapping column values in MySQL - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T19:53:55Zhttp://stackoverflow.com/feeds/question/37649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37649/swapping-column-values-in-mysql5Swapping column values in MySQLLiedman2008-09-01T09:19:56Z2009-08-27T22:57:02Z
<p>I have a MySQL table with coordinates, the column names are X and Y. Now I want to swap the column values in this table, so that X becomes Y and Y becomes X. The most apparent solution would be renaming the columns, but I don't want to make structure changes since I don't necessarily have permissions to do that.</p>
<p>Is this possible to do with <b>UPDATE</b> in some way? <b>UPDATE table SET X=Y, Y=X</b> obviously won't do what I want.</p>
<p><hr /></p>
<p>Edit: Please note that my restriction on permissions, mentioned above, effectively prevents the use of ALTER TABLE or other commands that change the table/database structure. Renaming columns or adding new ones are unfortunately not options.</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/37653#376533Answer by Unsliced for Swapping column values in MySQLUnsliced2008-09-01T09:24:35Z2008-09-01T09:24:35Z<p>Two alternatives
1. Use a temporary table
2. Investigate
the <a href="http://en.wikipedia.org/wiki/XOR_swap_algorithm" rel="nofollow">XOR algorithm</a></p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/37657#376572Answer by D4V360 for Swapping column values in MySQLD4V3602008-09-01T09:25:56Z2008-09-01T09:38:37Z<p><code><pre>
ALTER TABLE table ADD COLUMN tmp;
UPDATE table SET tmp = X;
UPDATE table SET X = Y;
UPDATE table SET Y = tmp;
ALTER TABLE table DROP COLUMN tmp;
</code></pre>
Something like this?</p>
<p>Edit: About Greg's comment:
No, this doesn't work:</p>
<p><code><pre>
mysql> select * from test;
+------+------+
| x | y |
+------+------+
| 1 | 2 |
| 3 | 4 |
+------+------+
2 rows in set (0.00 sec)</p>
<p>mysql> update test set x=y, y=x;
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2 Changed: 2 Warnings: 0</p>
<p>mysql> select * from test;
+------+------+
| x | y |
+------+------+
| 2 | 2 |
| 4 | 4 |
+------+------+
2 rows in set (0.00 sec)
</code></pre></p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/37660#376603Answer by Greg Hewgill for Swapping column values in MySQLGreg Hewgill2008-09-01T09:31:30Z2008-09-01T09:53:33Z<p><strong>UPDATE table SET X=Y, Y=X</strong> will do precisely what you want. The values are taken from the old row and assigned to a new copy of the same row, then the old row is replaced. You do not have to resort to using a temporary table, a temporary column, or other swap tricks.</p>
<p>@D4V360: I see. That is shocking and unexpected. I use PostgreSQL and my answer works correctly there (I tried it). See the <a href="http://www.postgresql.org/docs/8.3/static/sql-update.html" rel="nofollow">PostgreSQL UPDATE docs</a> (under Parameters, expression), where it mentions that expressions on the right hand side of SET clauses explicitly use the old values of columns. I see that the corresponding <a href="http://dev.mysql.com/doc/refman/6.0/en/update.html" rel="nofollow">MySQL UPDATE docs</a> contain the statement "Single-table UPDATE assignments are generally evaluated from left to right" which implies the behaviour you describe.</p>
<p>Good to know.</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/37737#377371Answer by mercutio for Swapping column values in MySQLmercutio2008-09-01T11:00:32Z2008-09-01T11:00:32Z<p>Ok, so just for fun, you could do this! (assuming you're swapping string values)</p>
<pre><code>mysql> select * from swapper;
+------+------+
| foo | bar |
+------+------+
| 6 | 1 |
| 5 | 2 |
| 4 | 3 |
+------+------+
3 rows in set (0.00 sec)
mysql> update swapper set
-> foo = concat(foo, "###", bar),
-> bar = replace(foo, concat("###", bar), ""),
-> foo = replace(foo, concat(bar, "###"), "");
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> select * from swapper;
+------+------+
| foo | bar |
+------+------+
| 1 | 6 |
| 2 | 5 |
| 3 | 4 |
+------+------+
3 rows in set (0.00 sec)
</code></pre>
<p>A nice bit of fun abusing the left-to-right evaluation process in MySQL.</p>
<p>Alternatively, just use XOR if they're numbers. You mentioned coordinates, so do you have lovely integer values, or complex strings?</p>
<p>Edit: The XOR stuff works like this by the way:</p>
<pre><code>update swapper set foo = foo ^ bar, bar = foo ^ bar, foo = foo ^ bar;
</code></pre>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/385713#3857130Answer by Artelius for Swapping column values in MySQLArtelius2008-12-22T07:21:27Z2008-12-22T07:21:27Z<p>Assuming you have signed integers in your columns, you may need to use CAST(a ^ b AS SIGNED), since the result of the ^ operator is an unsigned 64-bit integer in MySQL.</p>
<p>In case it helps anyone, here's the method I used to swap the same column between two given rows:</p>
<pre><code>SELECT BIT_XOR(foo) FROM table WHERE key = $1 OR key = $2
UPDATE table SET foo = CAST(foo ^ $3 AS SIGNED) WHERE key = $1 OR key = $2
</code></pre>
<p>where $1 and $2 are the keys of two rows and $3 is the result of the first query.</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/385733#3857330Answer by MarkR for Swapping column values in MySQLMarkR2008-12-22T07:36:36Z2008-12-22T07:36:36Z<p>I've not tried it but</p>
<pre><code>UPDATE tbl SET @temp=X, X=Y, Y=@temp
</code></pre>
<p>Might do it.</p>
<p>Mark</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/395008#3950081Answer by thorn for Swapping column values in MySQLthorn2008-12-27T13:47:55Z2008-12-27T13:47:55Z<p>This surely works! I've just needed it to swap Euro and SKK price columns. :)</p>
<p>UPDATE tbl SET X=Y, Y=@temp where @temp:=X;</p>
<p>The above will not work (ERROR 1064 (42000): You have an error in your SQL syntax; ...)</p>
<p>Thorn</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/559291#5592914Answer by Artem Russakovskii for Swapping column values in MySQLArtem Russakovskii2009-02-18T00:01:51Z2009-03-16T22:23:25Z<p>I just had to deal with the same and I'll summarize my findings.</p>
<ol>
<li><p>The <code>UPDATE table SET X=Y, Y=X</code> approach obviously doesn't work, as it'll just set both values to Y.</p></li>
<li><p>Here's a method that uses a temporary variable. Thanks to Antony from the comments of <a href="http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/" rel="nofollow">http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/</a> 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.</p>
<p><code>UPDATE swap_test SET x=y, y=@temp WHERE (@temp:=x) IS NOT NULL;</code></p></li>
<li><p>This method was offered by Dipin in, yet again, the comments of <a href="http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/" rel="nofollow">http://beerpla.net/2009/02/17/swapping-column-values-in-mysql/</a>. I think it’s the most elegant and clean solution. It works with both NULL and non-NULL values.</p>
<p><code>UPDATE swap_test SET x=(@temp:=x), x = y, y = @temp;</code></p></li>
<li><p>Another approach I came up with that seems to work:</p>
<p><code>UPDATE swap_test s1, swap_test s2 SET s1.x=s1.y, s1.y=s2.x WHERE s1.id=s2.id;</code></p></li>
</ol>
<p>Essentially, the 1st table is the one getting updated and the 2nd one is used to pull the old data from.<br/>
Note that this approach requires a primary key to be present.</p>
<p>This is my test schema:</p>
<pre><code>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);
</code></pre>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/562230#5622301Answer by Dipin for Swapping column values in MySQLDipin2009-02-18T18:15:37Z2009-02-18T18:15:37Z<p>update table swap_test set x=(@temp:=x), x = y, y = @temp;</p>
<p>Works for all scenarios in my quick testing.</p>
http://stackoverflow.com/questions/37649/swapping-column-values-in-mysql/1344196#13441960Answer by SeanDowney for Swapping column values in MySQLSeanDowney2009-08-27T22:57:02Z2009-08-27T22:57:02Z<p>You <em>could</em> change column names, but this is more of a hack. But be cautious of any indexes that may be on these columns </p>