Use case when statement with in() : CASE « Query Select « 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 » Query Select » CASE 
2. 15. 11. Use case when statement with in()
SQL>
SQL> create table emp(
  2            emp_no                 integer         primary key
  3           ,lastname               varchar2(20)    not null
  4           ,firstname              varchar2(15)    not null
  5           ,midinit                varchar2(1)
  6           ,street                 varchar2(30)
  7           ,city                   varchar2(20)
  8           ,state                  varchar2(2)
  9           ,zip                    varchar2(5)
 10           ,shortZipCode           varchar2(4)
 11           ,area_code              varchar2(3)
 12           ,phone                  varchar2(8)
 13           ,salary                 number(5,2)
 14            ,birthdate              date
 15           ,startDate              date
 16           ,title                  varchar2(20)
 17           ,dept_no                integer
 18           ,mgr                    integer
 19           ,region                 number
 20           ,division               number
 21           ,total_sales            number
 22    );

Table created.

SQL>
SQL>
SQL>
SQL>
SQL> -- emp Table Inserts:
SQL> insert into emp(emp_no, lastname, firstname, midinit, street, city, state, zip,shortZipCode, area_code, phone, birthdate, title)values
  2                       (1,'Z','Joy','R','Ave','New York','NY','12122','2333','212','200-1111','12-nov-1976','President');

row created.

SQL>
SQL>
SQL>
SQL>
SQL> create table avg_sal
  2   as select avg(salaryAS avg_Sal from emp;

Table created.

SQL>
SQL> 
SQL> select
  2   case when salary between and then '6-8'
  3        when salary in (9,10)       then '9-10'
  4        when exists (select null from avg_sal where avg_sal = salary)
  5                                    then 'EXISTS'
  6        when to_char(salarylike '2%' then 'Like2'
  7        when salary is null then 'Null'
  8        else 'ELSE Empno: '|| emp_no
  9        end
 10        AS case_test
 11   from emp
 12   /

CASE_TEST
----------------------------------------------------
Null

SQL>
SQL>
SQL> drop table avg_sal;

Table dropped.

SQL>
SQL> drop table emp;

Table dropped.

SQL>
SQL>
SQL>
2. 15. CASE
2. 15. 1. Using the CASE Expression
2. 15. 2. The following example illustrates the use of a simple CASE expression:
2. 15. 3. Using Searched CASE Expressions
2. 15. 4. The following example illustrates the use of a searched CASE expression:
2. 15. 5. Use logical operators in a searched CASE expression
2. 15. 6. Use CASE statement to deal with NULL
2. 15. 7. Use case when and grouping function together
2. 15. 8. Use case when clause to decode value
2. 15. 9. Use case when statement with between ... and
2. 15. 10. Use case when statement with exists and subquery
2. 15. 11. Use case when statement with in()
2. 15. 12. Use case when statement with to_char() like
2. 15. 13. Use case when with comparasion operator
2. 15. 14. Use Case to output null value
2. 15. 15. Wrap case when into sum() function
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.