I have a query;
select a.depotcd ||'|'||
b.carrcd ||'|'||
b.name ||'|'||
b.address1 ||'|'||
b.address2 ||'|'||
b.city ||'|'||
b.state ||'|'||
b.zipcd ||'|'||
b.contact ||'|'||
b.telnr ||'|'||
b.faxnr ||'|'||
b.currencycd ||'|'||
b.scac ||'|' from zzzzzz a, carriers b;
How can I change the column headings to something sensible ?
The normal method of 'column new_column' does not appear to work because of the concatenation characters.
Any ideas ?
Alex
select a.depotcd ||'|'||
b.carrcd ||'|'||
b.name ||'|'||
b.address1 ||'|'||
b.address2 ||'|'||
b.city ||'|'||
b.state ||'|'||
b.zipcd ||'|'||
b.contact ||'|'||
b.telnr ||'|'||
b.faxnr ||'|'||
b.currencycd ||'|'||
b.scac ||'|' from zzzzzz a, carriers b;
How can I change the column headings to something sensible ?
The normal method of 'column new_column' does not appear to work because of the concatenation characters.
Any ideas ?
Alex