SELECT DISTINCT( EMP.EMPLOYEEID ),
    EMP.EMPLOYEECODE,
    EMP.EMPLOYEENAME,
    EMP.HOMEADDRESS,
    DESIG.DESIGNATIONNAME
  FROM HRM_EMPLOYEE EMP,
    COM_DESIGNATION DESIG,
    COM_DEPARTMENT DEPT,
    COM_COMPANY COMP,
    HRM_EMPLOYEEDEPARTMENTS EMPDEPT,
    USR_USERS USRS
  WHERE EMP.EMPLOYEEID = EMPDEPT.EMPLOYEEID AND
    EMP.DESIGNATIONID  = DESIG.DESIGNATIONID AND
    DESIG.DEPARTMENTID = EMPDEPT.DEPARTMENTID AND
    EMP.STATUS IN  (SELECT  STAT STAT
        FROM
          (
          CASE
          When (:status = 0) THEN
            SELECT   1 STAT FROM dual
            UNION ALL
            SELECT   2 STAT FROM dual
          else
            Select :status STAT from dual
          end
          )
          xx
       ) 

Actually my need is: stow the records according to the parameter passing. if tat parameter i wish to show all records.

link|improve this question
Well, the error says you're missing a right parenthesis, and you are. Add a ) to the end of the query. – Blorgbeard Mar 30 '11 at 7:16
Please finish your last sentence: "If that parameter i wish to show all records...". When you want to show all records, for what value of your parameter? I will try to correctly write your current query. – Oleg Danu Mar 30 '11 at 7:17
And don't forget to mark your correct answer. – Oleg Danu Mar 30 '11 at 7:50
feedback

2 Answers

I'm not sure if you can have a CASE statement as a table expression. If you do so, you may have to CAST the expression to a table type. But why so complicated, instead of this:

EMP.STATUS IN  (SELECT  STAT STAT
    FROM
      (
      CASE
      When (:status = 0) THEN
        SELECT   1 STAT FROM dual
        UNION ALL
        SELECT   2 STAT FROM dual
      else
        Select :status STAT from dual
      end
      )
      xx
   ) 

Write this:

(EMP.STATUS IN (1, 2) AND :status = 0) OR
(EMP.STATUS = :status)
link|improve this answer
feedback
SELECT DISTINCT( EMP.EMPLOYEEID ),
    EMP.EMPLOYEECODE,
    EMP.EMPLOYEENAME,
    EMP.HOMEADDRESS,
    DESIG.DESIGNATIONNAME
  FROM HRM_EMPLOYEE EMP,
    COM_DESIGNATION DESIG,
    COM_DEPARTMENT DEPT,
    COM_COMPANY COMP,
    HRM_EMPLOYEEDEPARTMENTS EMPDEPT,
    USR_USERS USRS
  WHERE EMP.EMPLOYEEID = EMPDEPT.EMPLOYEEID AND
    EMP.DESIGNATIONID  = DESIG.DESIGNATIONID AND
    DESIG.DEPARTMENTID = EMPDEPT.DEPARTMENTID AND
    ( 
     (EMP.STATUS IN (1, 2) and :status = 0)
      or :status <> 0 --This will not filter your status, as I expect you want it to do so
     )
link|improve this answer
You're missing the part where EMP.STATUS = :status as expressed in Nikhil's query: EMP.STATUS IN ( Select :status STAT from dual ) – Lukas Eder Mar 30 '11 at 7:23
I expect he wants to show all records if status <> 0. – Oleg Danu Mar 30 '11 at 7:24
Anyway the logic of the query is clear. – Oleg Danu Mar 30 '11 at 7:25
We're not sure what he wants :-) – Lukas Eder Mar 30 '11 at 7:25
Yeaap .......;) – Oleg Danu Mar 30 '11 at 7:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.