Literals, spaces, and the TITLE phrase can be included in the operation definition to format the result heading and improve readability.
For example, the following definition returns side titles, evenly spaced result strings, and a blank heading.
SELECT ('Gender ' || gender ||', Marital Status ' || mstat)(TITLE ' ') FROM Employee ;
Result:
Gender M, Marital Status S Gender F, Marital Status M Gender M, Marital Status M Gender F, Marital Status M Gender F, Marital Status M Gender M, Marital Status M Gender F, Marital Status W ...