Is there a query with which i can exchange the values of two rows with single query?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

you can see the solution in this article

http://www.microshell.com/database/sql/swap-values-in-2-rows-sql/

look at the : The elegant way , make a join to get the data from the 2 rows to be swapped in 1 row, after that make an update is easy.

link|improve this answer
feedback
UPDATE my_table SET a=@tmp:=a, a=b, b=@tmp;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.