I want to run multiple update queries(aorund 25 statements)
Eg:
update table1 set col2=null where col3 is null;
update table1 set col4=null where col5 is null;
Is there an easy way to run all the update staments by placing all of them at the back of a command button or can I use modules?
If I want to know how many rows got updated for each statement, is there a way to set it?
Eg:
update table1 set col2=null where col3 is null;
update table1 set col4=null where col5 is null;
Is there an easy way to run all the update staments by placing all of them at the back of a command button or can I use modules?
If I want to know how many rows got updated for each statement, is there a way to set it?