I want to update multiple column with multiple condition. for.eg.
update student set name='john' where id=10
update student set name='doe' where id=5
How to update this in a single statement?
I want to update multiple column with multiple condition. for.eg.
update student set name='john' where id=10
update student set name='doe' where id=5
How to update this in a single statement?