"column xxx format a30" clause includable in SELECT statement?
Usually I can preformat the width of a column by entering a command like
column name format a30
before the actual SELECT statement
SELECT .... name FROM blah;
However I could imagine that I can somehow include the format clause into the SELECT statement itself similar to
SELECT .... name formatcolumn=A30 FROM blah;
Is this possible somehow?