Jump to content

MySQL SWAP


Julius

Recommended Posts

Hello,

 

I have this table `forums`, in it: forum_id, forum_name, forum_position.

SELECT * FROM `forums`

1 Test 1
2 Test_two 2

Now, how can I swap those position numbers? I want 'Test' position to be 2 and 'Test_two' position to be 1.

I tried this:

UPDATE forums
SET forum_position=forum_position-1, forum_position = forum_position+1
WHERE forum_id = 2 AND forum_id = 1

but it didn't work.

Link to comment
https://forums.phpfreaks.com/topic/255136-mysql-swap/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.