Use the LIKE operator : Like « PL SQL Operators « 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 » PL SQL Operators » Like 
23. 6. 4. Use the LIKE operator
SQL>
SQL> set feedback on escape ~
SQL>
SQL> CREATE TABLE authors (
  2    id         NUMBER PRIMARY KEY,
  3    first_name VARCHAR2(50),
  4    last_name  VARCHAR2(50)
  5  );

Table created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (1'Marlene', 'Theriault');

row created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (2'Rachel', 'Carmichael');

row created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (3'James', 'Viscusi');

row created.

SQL>
SQL> COMMIT;

Commit complete.

SQL>
SQL>
SQL> SET SERVEROUTPUT ON ESCAPE OFF
SQL>
SQL> CREATE OR REPLACE PROCEDURE author_sel (
  2     i_last_name IN AUTHORS.LAST_NAME%TYPE,
  3     cv_author IN OUT SYS_REFCURSOR)
  4  IS
  5     v_last_name AUTHORS.LAST_NAME%TYPE;
  6  BEGIN
  7
  8     v_last_name := '%'||UPPER(i_last_name)||'%';
  9
 10     OPEN cv_author FOR
 11     SELECT id, first_name, last_name
 12     FROM authors
 13     WHERE UPPER(last_nameLIKE v_last_name;
 14
 15  EXCEPTION
 16     WHEN OTHERS
 17     THEN
 18        DBMS_OUTPUT.PUT_LINE(sqlerrm);
 19  END;
 20  /

Procedure created.

SQL>
SQL> COL first_name FORMAT A20
SQL> COL last_name FORMAT A20
SQL>
SQL> VARIABLE x REFCURSOR
SQL> EXEC author_sel('u', :x)

PL/SQL procedure successfully completed.

SQL>
SQL> print x


        ID FIRST_NAME           LAST_NAME
---------- -------------------- --------------------
         Marlene              Theriault
         James                Viscusi

rows selected.

SQL> drop table authors;

Table dropped.
23. 6. Like
23. 6. 1. LIKE
23. 6. 2. Use like in PL/SQL
23. 6. 3. Validate a zip code
23. 6. 4. Use the LIKE operator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.