Hi,
I have a SQL table like this.
id Order
======== =========
1 4
2 3
3 5
4 1
5 2
Is it possible to update multiple rows in 1 sql statement? i.e. I want to update id = 3, order = 1 and id = 5, order = 4 and id = 1, order = 1
I know how to do that in 3 update statements. But I would like to know if I can update 3 rows in 1 sql update statement.
Thank you.