Hi Friends,
I have the following query, i am using the column alias by this way,
select work_Code as "Work Code",work_nature as "Work Nature" from sb_cm_work_nature
it works fine and i get this output.
Work Code Work Nature
1 External
2 DE-Sales
3 DE-Miscellaneous
4 DE-Equipments &Transport
But my requirement is to break the Column alias in two line with the new line character as follows
Work Work
Code Nature
1 External
2 DE-Sales
3 DE-Miscellaneous
4 DE-Equipments &Transport
Please guide me how can i proceed.
Thanks you so much.
Manish Kaushik