Meaning of CHR in Oracle

Source: Internet
Author: User

CHR (10) and CHR (13) -- line feed in Oracle
CHR (32) -- indicates space

CHR (9) -- I don't know what it means. The following shows that it is neither a space nor a tab key.

 

Declare
V_a varchar2 (255 );
V_ B varchar2 (255 );
Begin
Select 'A' | CHR (9) | 'B' into V_ B from dual;

V_a: = 'a B '; -- the tab key is used between A and B.

Dbms_output.put_line (V_ B );
Dbms_output.put_line (v_a );
If v_a = V_ B then
Dbms_output.put_line ('v _ A is equal to V_ B ');
End if;
End;

 

The output result indicates that the two are not equal.

 

 

 

Declare
V_a varchar2 (255 );
V_ B varchar2 (255 );
Begin
Select 'A' | CHR (9) | 'B' into V_ B from dual;
V_a: = 'a B '; -- A and B are spaces.
Dbms_output.put_line (V_ B );
Dbms_output.put_line (v_a );
If v_a = V_ B then
Dbms_output.put_line ('v _ A is equal to V_ B ');
End if;
End;

The output result indicates that the two are not equal.

 

 

 

However, when Oracle exports data to excel, different fields can be saved to different Excel columns using CHR (9.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.