This is just typo. Sure should be:
select a_col || chr(9) || b_col from your_table;
-----------------------------------------------------------
SQL> select 'abc' || chr(9) || 'def' from dual;
'ABC'||
-------
abc def
[Edited by Shestakov on 06-14-2002 at 03:17 PM]




Reply With Quote