CHR(30) [message #334476] |
Wed, 16 July 2008 15:08  |
shoaib123
Messages: 118 Registered: December 2007 Location: Chicago
|
Senior Member |
|
|
The chr(30) should return the balnk space between numeric and alphabetic value. But it is not returning anything in this situation. Please small hint would be appreciated..
SQL> select 12345||chr(30)||'abcdef' from dual;
12345abcdef
[EDITED by LF: according to message #334480, topic title changed from "CHR(13)" to "CHR(30)"]
[Updated on: Thu, 17 July 2008 00:29] by Moderator Report message to a moderator
|
|
|
|
Re: chr(13) [message #334478 is a reply to message #334476] |
Wed, 16 July 2008 15:27   |
Frank
Messages: 7901 Registered: March 2000
|
Senior Member |
|
|
shoaib123 wrote on Wed, 16 July 2008 22:08 | The chr(30) should return the balnk space between numeric and alphabetic value. But it is not returning anything in this situation. Please small hint would be appreciated..
SQL> select 12345||chr(30)||'abcdef' from dual;
12345abcdef
|
Can you explain the logic behind choosing your subject-title to describe this question?
|
|
|
|
|
|
Re: chr(13) [message #334524 is a reply to message #334476] |
Wed, 16 July 2008 23:39   |
jyothsna1612
Messages: 68 Registered: June 2008
|
Member |
|
|
Hi Shoaib,
I think the following ex: will help you
SQL> select 12345||chr(32)||'abcdef' from dual;
12345||CHR(3
------------
12345 abcdef
Thanks
Jyothsna
|
|
|
|
|
|
|