I am using Oracle SQL (in SQLDeveloper, using the SQL Worksheet). I would like to print a statement before my select, such as
PRINT \'Querying Table1\'; SELECT
You could put your text in a select statement such as...
SELECT 'Querying Table1' FROM dual;