Hello,
I have to do update operation to the set of records
e.g.
I tried pasting all the statements in query browser but only one statement gets executed. How can I update this bunch of records in one go.
Thanks.
I have to do update operation to the set of records
e.g.
Code:
update tablename set value=100 where id=1;
update tablename set value=200 where id=2;
update tablename set value=300 where id=3;
update tablename set value=400 where id=4;
I tried pasting all the statements in query browser but only one statement gets executed. How can I update this bunch of records in one go.
Thanks.