Q: I typed in two SQL's as shown below
select * from user;
select * from account where userid='u01';
When i ran the script only the second statement was getting executed.
A: You may have many sql statements in script but only last select
statement is visible in result tab.
Others replaced by rule: select <fields> from ... -> select count(*) from ...
You can check it in details tab