SELECT 'SELECT COLUMN1,COLUMN2,COUNT(*) FROM MY_TABLE;' (TITLE '');
SELECT COLUMN1 (TITLE '')
, COLUMN2 (TITLE '')
, COLUMN3 (TITLE '')
FROM MY_TABLE;
Outputing the actual SQL will be a manual process as the query needs to be hardcoded.
You can get rid of the column names by using the empty title.
↧