spool
Hi,
On 19c , I run my query and I spool the result:
spool myfil.txt
select count(*) from mytable;
spool off
But I want to have a line just at the beginning of my spool file , like this:
This is the result:
How to do that easily (without dbms.output.... or ......).
Thank you.