case switch based on clob data : Case Query « Select Query « Oracle PL / SQL






case switch based on clob data

   
SQL> declare
  2
  3    c1 clob := to_clob('abc');
  4    c2 clob;
  5
  6  begin
  7      case c1
  8           when to_clob('abc') then dbms_output.put_line('abc');
  9           when to_clob('def') then dbms_output.put_line('def');
 10      end case;
 11
 12      c2 := case c1
 13         when to_clob('abc') then 'abc'
 14         when to_clob('def') then 'def'
 15      end;
 16
 17      dbms_output.put_line(c2);
 18
 19  end;
 20  /
abc
abc

PL/SQL procedure successfully completed.

SQL>

   
    
    
  








Related examples in the same category

1.You could use the case statement in an SQL statement
2.Combine case with NVL function
3.Combine Case with group by
4.Use the CASE expression and SUM function
5.Use the CASE expression and SUM function to create an order price report
6.Use case ... when to output comments for marks
7.Use case when and grouping function together
8.Use case when clause to decode value
9.Use case when statement to replace if statement
10.Use case when statement with between ... and
11.Use case when statement with exists and subquery
12.Use case when statement with in()
13.Use case when statement with to_char() like
14.Use case when with comparasion operator
15.A searched CASE statement
16.use case when to control the order index
17.case when count(*) NOT between ... and
18.Rename case when column