Use CHR() function to create special char : CHR « Character String Functions « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » Character String Functions » CHR 
11. 3. 2. Use CHR() function to create special char
SQL>
SQL> CREATE TABLE customer
  2  (customer_id        NUMBER(7),
  3   customer_name      VARCHAR2(50),
  4   phone              VARCHAR2(15),
  5   address            VARCHAR2(400),
  6   city               VARCHAR2(35),
  7   state              VARCHAR2(30),
  8   country            VARCHAR2(30),
  9   zip_code           VARCHAR2(10),
 10   credit_rating      VARCHAR2(9),
 11   sales_rep_id       NUMBER(7),
 12   region_id          NUMBER(7),
 13   comments           VARCHAR2(255),
 14   preferred_customer VARCHAR2(1DEFAULT 'N' NOT NULL,
 15   shipping_method    VARCHAR2(1DEFAULT 'M' NOT NULL);

Table created.

SQL>
SQL> INSERT INTO customer VALUES (201'Jane',    '111-1111', '7 AVE','SAO', NULL, 'BRAZIL', NULL, 'EXCELLENT',122'A''N''M');

row created.

SQL> INSERT INTO customer VALUES (202'Todd',    '222-2222', '6 BLVD.','OSAKA', NULL, 'JAPAN', NULL, 'POOR', 144'B''N''M');

row created.

SQL> INSERT INTO customer VALUES (203'Sharon',  '333-3333', '1 STREET', 'NEW DELHI', NULL, 'INDIA', NULL, 'GOOD', 144,'C''N''M');

row created.

SQL> INSERT INTO customer VALUES (204'Hong',    '444-4444', '2 STREET','SEATTLE', 'WASHINGTON', 'USA', '98101', 'EXCELLENT',111, NULL, 'N''M');

row created.

SQL> INSERT INTO customer VALUES (205'Anderson','555-5555', '5 ROAD', 'HONG KONG', NULL, NULL,NULL, 'EXCELLENT', 154, NULL, 'N''M');

row created.

SQL> INSERT INTO customer VALUES (206'Bob',     '666-6666', '1 ROAD','CANNES', NULL, 'FRANCE', NULL, 'EXCELLENT', 155,'D''N''M');

row created.

SQL> INSERT INTO customer VALUES (207'Cat',     '777-7777', '6 STREET','LAGOS', NULL, 'NIGERIA', NULL, 'GOOD', NULL, 3, NULL,'N''M');

row created.

SQL> INSERT INTO customer VALUES (208'Doge',    '888-8888', '4 RASSE', 'STUTTGART', NULL, 'GERMANY', NULL, 'GOOD', 155,'E''N''M');

row created.

SQL> INSERT INTO customer VALUES (209'Black',   '999-9999', '2 MAR','SAN PEDRO DE MACON''S', NULL, 'DOMINICAN REPUBLIC',NULL, 'EXCELLENT', 111, NULL, 'N''M');

row created.

SQL> INSERT INTO customer VALUES (210'Red',     '000-0000', '3 ARO','NOGALES', NULL, 'MEXICO', NULL, 'EXCELLENT', 122,'Customer is difficult to reach by phone.  Try mail.','N', 'M');

row created.

SQL> INSERT INTO customer VALUES (211'Ted',     '123-1231', '7 MOD', 'PRAGUE',NULL, 'CZECHOSLOVAKIA', NULL, 'EXCELLENT', 155, NULL,'N''M');

row created.

SQL> INSERT INTO customer VALUES (212'Homas',   '124-1234', '5 COR','ALEXANDRIA', NULL, 'EGYPT', NULL, 'EXCELLENT', 133,'F''N''M');

row created.

SQL> INSERT INTO customer VALUES (213'Look',    '555-6281', '4 STREET', 'SAN FRANCISCO', 'CA', 'USA', '94117','EXCELLENT', 111'G''N''M');

row created.

SQL> INSERT INTO customer VALUES (214'Yellow',  '555-7171', '4 STREET','BUFFALO', 'NY', 'USA', '14202', 'POOR', 111, NULL, 'N''M');

row created.

SQL> INSERT INTO customer VALUES (215'White',   '337-3892', '6 YEK','SAINT PETERSBURG', NULL, 'RUSSIA', NULL, 'POOR',155'T''N''M');

row created.

SQL>
SQL>
SQL>
SQL> SELECT customer_name || CHR(10||
  2         address || CHR(10||
  3         customer_csz(customer_idfull_address
  4  FROM   customer;

FULL_ADDRESS
--------------------------------------------------------------------------------
Jane
AVE
SAO, BRAZIL

Todd
BLVD.
OSAKA, JAPAN

Sharon
STREET
NEW DELHI, INDIA

FULL_ADDRESS
--------------------------------------------------------------------------------

Hong
STREET
SEATTLE, WASHINGTON 98101 USA

Anderson
ROAD
HONG KONG,

Bob
ROAD

FULL_ADDRESS
--------------------------------------------------------------------------------
CANNES, FRANCE

Cat
STREET
LAGOS, NIGERIA

Doge
RASSE
STUTTGART, GERMANY

Black

FULL_ADDRESS
--------------------------------------------------------------------------------
MAR
SAN PEDRO DE MACON'S, DOMINICAN REPUBLIC

Red
ARO
NOGALES, MEXICO

Ted
MOD
PRAGUE, CZECHOSLOVAKIA


FULL_ADDRESS
--------------------------------------------------------------------------------
Homas
COR
ALEXANDRIA, EGYPT

Look
STREET
SAN FRANCISCO, CA 94117 USA

Yellow
STREET
BUFFALO, NY 14202 USA

FULL_ADDRESS
--------------------------------------------------------------------------------

White
YEK
SAINT PETERSBURG, RUSSIA


15 rows selected.

SQL>
SQL>
SQL>
SQL> drop table customer;

Table dropped.

SQL>
11. 3. CHR
11. 3. 1. CHR(x) gets the character with the ASCII value of x
11. 3. 2. Use CHR() function to create special char
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.