Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update multiple rows with different values in a single query - MySQL

Tags:

mysql

rows

I'm new to MySQL.

I'm using this to update multiple rows with different values, in a single query:

UPDATE categories
    SET order = CASE id
        WHEN 1 THEN 3
        WHEN 2 THEN 4
        WHEN 3 THEN 5
    END,
    title = CASE id
        WHEN 1 THEN 'New Title 1'
        WHEN 2 THEN 'New Title 2'
        WHEN 3 THEN 'New Title 3'
    END
WHERE id IN (1,2,3)

I am using "WHERE" to improve performance (without it every row in the table would be tested).

But what if I have this senario (when I don't want to update title for id 2 and 3):

UPDATE categories
    SET order = CASE id
        WHEN 1 THEN 3
        WHEN 2 THEN 4
        WHEN 3 THEN 5
    END,
    title = CASE id
        WHEN 1 THEN 'New Title 1'
    END
WHERE id IN (1,2,3)

The above code will change the title for id 2 and 3 into "NULL"...

What is the right way to make the query, but skip updating title for id 2 and 3 and still keep the performance "WHERE id IN" gives ?

Maybe like this

UPDATE categories
    SET order = CASE id
        WHEN 1 THEN 3
        WHEN 2 THEN 4
        WHEN 3 THEN 5
    END,
    title = CASE id
        WHEN 1 THEN 'New Title 1'
        WHEN  THEN 
        WHEN  THEN 
    END
WHERE id IN (1,2,3)
like image 581
Hakan Avatar asked Feb 03 '23 12:02

Hakan


1 Answers

Set title equal to itself when you don't want to update it to a different value.

UPDATE categories
    SET order = CASE id
        WHEN 1 THEN 3
        WHEN 2 THEN 4
        WHEN 3 THEN 5
    END,
    title = CASE id
        WHEN 1 THEN 'New Title 1'
        ELSE title
    END
WHERE id IN (1,2,3)
like image 75
Joe Stefanelli Avatar answered Feb 05 '23 08:02

Joe Stefanelli