Subject Dumb Question
Author chumlyii
In Oracle I'm used to using SQL to create SQL scripts. While I can
do the same in Firebird I can't seem to figure out how to run
multiple statements as a script.

EXAMPLE

SELECT MAX(ID) FROM TABLE1;
SELECT MAX(ID) FROM TABLE2;
SELECT MAX(ID) FROM TABLE3;

It gives me an error on line 2.

I hate to have to write a procedure for something that sould be
simple.

Anyone have a solution?

Barry