What is the magic word to get query browser to execute a string of queries?
Example:
Individually, each query runs fine. When I try to combine them into a script, I get a syntax error.
Dave Gee
Example:
Code:
insert into X (a, b) values (1, 2);
insert into X (a, b) values (3, 4);
... etc ...
Individually, each query runs fine. When I try to combine them into a script, I get a syntax error.
Dave Gee