How would I use one UPDATE query to update every row with different values? Like so:
And so on...Code:UPDATE table SET column = 'value1' WHERE id = 1 UPDATE table SET column = 'value2' WHERE id = 2 UPDATE table SET column = 'value3' WHERE id = 3
How would I acheive this with using one query? Or is this not possible? Thanks.






Bookmarks