Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Select statement

612097Feb 18 2008 — edited Feb 25 2008
Hi all,
I've been having really hard time getting this query done. Here is the scenario. I have a table with columns client_score, client_favor, client_dependable and value_percent. Now I need to get all the clients whom meet all the following criteria.
client_score greater than 60 value_percent
and
client_favor less than 40 value_percent
and
client_dependable greater than 50 value_percent.
I do not know if I can have case statement within where clause in pl/sql. Any suggestion would be appreciated.

thank you.

Comments

105967

You could use

SQL> select ep.emp_no, ep.salary - nvl(ded.red_amount, 0) salary
  2  from   emp_profile ep,
  3         ( select emp_no, sum(red_amount) red_amount
  4           from   emp_profile
  5           where  profile_no in (19,45,67,89,99,24)
  6           group by emp_no
  7         ) ded
  8  where  ep.profile_no = 11
  9  and    ded. emp_no(+) = ep.emp_no
 10  order by ep.emp_no
 11  ;
 
    EMP_NO     SALARY
---------- ----------
      1000       1200
      1010        500
 
2 rows selected.
 
SQL> 
536807
Many Thanks !!!!
Aketi Jyuuzou

I used simple case.
And I used searched case.

create table empTable(EmpNo,ProfileNo,Salary,Red_Amount) as
select 1000,11,1200,430 from dual union
select 1000,12, 100, 55 from dual union
select 1000,13, 120,  7 from dual union
select 1000,14, 430,  8 from dual union
select 1000,15, 300, 40 from dual union
select 1000,43, 200, 20 from dual union
select 1000,56, 100,232 from dual union
select 1010,11,1000,300 from dual union
select 1010,14, 110,700 from dual union
select 1010,19, 200,500 from dual union
select 1010,12, 410,545 from dual union
select 1010,13, 300, 54 from dual;
select EmpNo,
case max(case when ProfileNo in(19,45,67,89,99,24)
              then 1 else 0 end)
when 1 then max(decode(ProfileNo,19,Red_Amount))
else max(Salary) end as Salary
  from empTable
group by EmpNo;
EmpNo  Salary
-----  ------
 1000    1200
 1010     500
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 24 2008
Added on Feb 18 2008
15 comments
9,537 views