When I export to pdf the headings of my columns are on a single line and therefore I loose columns because I have long titles. Is there a way to force a wrap of title?
SELECT date,
,col1 AS "Very Long Title"
,col2 AS "Very Long Title2"
,COL3 AS "Very Long Title2"
.....
,COL 10 AS "Very Long Title10"
FROM my table
The result are shown nicely within a browser as the browser formats the headings correctly and wraps accordingly to the space on the screen. However, If I export to PDF the titles are on one line and my last columns disappear.
i have successfuly changed orientation and fontsize but still columns disappear. Is there a way to force a wrap. e.g.
,col1 AS "Very|Long Title"
would display as
Very
Long Title
xxx
xxx
xxx
Thanks