I am trying to insert a tab between two vales/expressions in a select query using the below SQL. But this is not working.Tab is not coming in the output.
`select first_name||chr(9)||last_name Name from worker;'
Find below output.
2 Answers
The syntax works fine.
It seems it is your client tool that does not display the tabs.
SQL Developer doesn't show all characters in the grid, including tabs. However, if you double-click in a cell, you will see them:

