I'm using SQL Server to swap two values in two rows. Let me show:

[ord] [name]
1     John
4     Jack
7     Pete
9     Steve
11    Mary

Say, I need to swap [ord] numbers for "Pete" and "Steve" to make this table to be like so:

[ord] [name]
1     John
4     Jack
9     Pete
7     Steve
11    Mary

This seems like a trivial task but I can't seem to write an SQL UPDATE statement for it.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

If 'Peter' and 'Steve' are unique in your table, this will do:

UPDATE TableX
SET ord = ( SELECT MIN(ord) + MAX(ord) 
            FROM TableX 
            WHERE name IN ('Peter', 'Steve')
          ) - ord
WHERE name IN ('Peter', 'Steve')

or (improved by @Erwin):

UPDATE TableX
SET ord = ( SELECT SUM(ord) 
            FROM TableX 
            WHERE name IN ('Peter', 'Steve')
          ) - ord
WHERE name IN ('Peter', 'Steve')
link|improve this answer
Changed mind again. I tested and it works witn MIN+MAX, too. – ypercube Nov 13 '11 at 2:27
What I wanted to write to begin with: +1 for solving this with an aggregation. I wanted to do that, too, but gave up, because I could not find an equivalent of array_agg() in tSQL. – Erwin Brandstetter Nov 13 '11 at 2:29
@ErwinBrandstetter: data.stackexchange.com/stackoverflow/q/117570 – ypercube Nov 13 '11 at 2:31
min + max works of course, sorry! I could have sworn I had seen max + max. I copy / pasted it into my comment and for everyone to see, it's min + max. Sorry for the mixup. I deleted my wrong comments. Anyway. sum() does the same and is faster. – Erwin Brandstetter Nov 13 '11 at 2:34
1  
The only safe piece of code here so far is my solution. If one or both values in ord is NULL, they trade places like any other value. If one of the rows does not exist, nothing is changed. That's how it should be, IMO. – Erwin Brandstetter Nov 13 '11 at 7:08
show 2 more comments
feedback

Use a CASE expression:

UPDATE yourtable
SET [ord] = CASE [ord] WHEN 9 THEN 7
                       WHEN 7 THEN 9 END
WHERE [ord] IN (7, 9)
link|improve this answer
1  
This is only a simplified subset of the problem. It assumes that you query ordinal number of Pete and Steve first and build the query with the results. – Erwin Brandstetter Nov 13 '11 at 1:28
Yeah, obviously I'm not trying to hard code it. Thanks for trying, though ... – ahmd0 Nov 13 '11 at 3:28
@ahmd0: Sorry, your question didn't make it clear. – Mark Byers Nov 13 '11 at 7:49
feedback

This is very similar to your earlier question: SQL to move rows up or down in two-table arrangement
I prepared another demo on data.stackexchange.com for you.

Edit: the setup is simplified now, so I simplified my query accordingly.

WITH x AS (
  SELECT name, ord FROM t WHERE name = 'Pete'  -- must be unique!
  ), y AS (
  SELECT name, ord FROM t WHERE name = 'Steve'  -- must be unique!
  )
UPDATE t SET ord = z.ord
FROM (
   SELECT x.name, y.ord FROM x,y
   UNION ALL
   SELECT y.name, x.ord FROM x,y
   ) z
WHERE t.name = z.name;
link|improve this answer
Haha. You know, I posted this question to actually better understand your other post. )) Now I know what you meant with that code. Thanks again. Unfortunately this time I'd give the "answer" to ypercube above. It's a very neat solution with MAX/MAX or SUM. – ahmd0 Nov 13 '11 at 3:26
@ahmd0: Well, I agree. Upvoted it myself. :) min/max, btw., not max/max. Funny, I had the same mixup ... – Erwin Brandstetter Nov 13 '11 at 3:38
Oops. I can't edit it out now... – ahmd0 Nov 13 '11 at 8:27
"Users may edit their own comments any number of times for five minutes after they are first posted." Read the faq on meta for more info. – Erwin Brandstetter Nov 13 '11 at 8:32
feedback
UPDATE Table_1
SET ord =
    CASE name
    WHEN 'Pete' THEN (SELECT ord FROM Table_1 WHERE name = 'Steve')
    WHEN 'Steve' THEN (SELECT ord FROM Table_1 WHERE name = 'Pete')
    END
WHERE name IN ('Pete', 'Steve')

You can easily replace 'Pete' and 'Steve' with other names...

link|improve this answer
This would work in this example. Thanks. – ahmd0 Nov 13 '11 at 3:24
feedback
BEGIN TRANSACTION

UPDATE TABLENAME
SET ord = 9 
where name = 'Pete'

UPDATE TABLENAME
SET ord = 7
where name = 'Steve'

COMMIT TRANSACTION
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.