I am running this statement:
select trim(a),trim(b) from table x;
Even though I used the trim() statement, my output looks like this:
A B
___ ____
kunjramansingh smartdude
The datatype of column 'a' and 'b' is varchar2(255).
There is a gap between the data of two output. I want to show the data without the whitespace - in a format like this:
A B
___ ______
kunjramansinghsmartdude
How can I do this?