Quick Select Execution in SQL Window

Lucky-B

Member
In the SQL Window, most of the time I enter more than one select statements. Is there (or can you add) a "quick" way of executing only one of the select statement (regardless of highlighting it)... Suggestion we put the cursor on part of one of the select and press Shift-F8 to execute instead of F8 to execute the complete SQL Window ? Thanks.

------------------
Lucky-B
 
Hi Lucky-B,

There is an 'AutoSelect' checkbox on the SQL Window tab of the Preferences.

Kind Regards, Mark.
 
Hy,

to this way, you had to add a ';' to every statement, like this:
--------------
SELECT 1 FROM dual;
SELECT 2 FROM dual;
--------------

------------------
Thanks for helping & looking
TenGor
 
Back
Top