Link to home
Start Free TrialLog in
Avatar of Metalteck
MetalteckFlag for United States of America

asked on

And/Or SQL Question

I have a query where I'm trying to identify all the users who have a specific benefit plan.
Their dependents can also be part of this plan.

For the most part, I've properly identified all the users
The most active record in the database is where the ben.stop_date is 1/1/1700.
But I need to clean up the duplicates.

There are 2 issues causing the duplicates.
1.The duplicates are being caused by different values in the column dep_stop_date.
   This value should be 1/1/1700.
2. Not all users have dependents on the plan.
    Those users are being displayed, but a null value of 000000 is being displayed in the dep_stop_date column.

My question is how do I retrieve all the records without the duplicates and without omitting the users who do not have dependents on the plan?

Here is my code:

select  
                        e.employee,
                        e.emp_status,
                        b.start_date,
                        b.cov_option,
                        e.first_name,
                        e.fica_nbr,
                        e.last_name,
                        e.email_address,
                        e.addr1,
                        e.addr2,
                        e.city,
                        e.state,
                        e.zip,
                        p.birthdate,
                        p.hm_phone_nbr,
                        d.seq_nbr,
                        d.active_flag,
                        d.rel_code,
                        d.dep_type,
                        d.first_name dep_first_name,
                        d.last_name dep_last_name,
                        d.fica_nbr dep_fica_nbr,
                        d.birthdate dep_birthdate,                      
                        d.addr1 dep_addr1,
                        d.addr2 dep_addr2,
                        d.city dep_city,
                        d.state dep_state,
                        d.zip dep_zip,
                        d.hm_phone_nbr dep_hm_phone_nbr,
                        h.dependent dep_number,
                        h.plan_code dep_plan_code,
                        h.stop_date dep_stop_date,  
                        b.stop_date ben_stop_date  
                       
                  from  prod.employee e,
                        prod.paemployee p,
                        prod.emdepend d,  
                        prod.benefit b,
                        prod.hrdepben h
                  where  
                        e.employee=d.employee(+) AND  
                        e.company=d.company(+) AND
                        e.employee=p.employee(+) AND
                        e.company=p.company(+) AND
                        e.employee=b.employee(+) AND  
                        e.company=b.company(+) AND
                        H.COMPANY(+)=B.COMPANY AND
                        H.PLAN_TYPE(+)=B.PLAN_TYPE AND
                        H.EMPLOYEE(+)=B.EMPLOYEE AND
                        H.EMP_START(+)=B.START_DATE AND
                        H.PLAN_CODE(+)=B.PLAN_CODE AND
                        e.emp_status not like 'T%' AND  
                       (b.stop_date = TO_DATE ('01-01-1700 00:00:00', 'DD-MM-YYYY HH24:MI:SS'))
                       AND b.plan_code='IDWD'
                  order by e.employee,d.seq_nbr;
Avatar of Lee Ingalls
Lee Ingalls
Flag of United States of America image

Have you tried Select Distinct? (synonymous with Select Unique).

Distinct is used in the Select statement to notify the query that you only want the unique items returned when a field holds data that may not be unique.
Avatar of Sean Stuber
Sean Stuber

you have contradicting conditions...

>>>  e.employee=b.employee(+) AND  

this forces an outer join (and other (+) joins on b.

>>>      AND b.plan_code='IDWD'

this forces the results to be not null, which is effectively negating the outer join, because only those rows returned by an inner join will satisfy criteria like that
after you fix your join conditions,  what do you want to do with duplicates?


if a given employee has 2 rows for 1/1/1700,  which one do you want returned?
The experts here very likely know how to write such a query. What we don't know is your data. Can you provide some sample data (the relevant join and select fields are enough) for the five tables that encompass the various criteria you're having issues with and your desired results from that data? Please do so in a text format (i.e. not a picture) so we will have something we can test with.
Avatar of Metalteck

ASKER

Completely understand your points and you can see where my dilemma is
IDWD is the plan that identifies all the users and is necessary.

I can remove the outer join on e.employee = b.employee.

I was thinking I can add a the following statements to the where clause to eliminate the duplicates:
(H.STOP_DATE = TO_DATE ('01-01-1700 00:00:00', 'DD-MM-YYYY HH24:MI:SS') or
                       h.stop_date is null)

But I get an error stating that outer join operators are not allowed for in/or .

Any suggestions on how I can resolve this?
@sdstuber, the duplicates is occurring because the dep_stop_date has a value of 1/1/1700 on one line and an actual value on the next line.
I want to identify only those values without eliminating the records that have a null value
ASKER CERTIFIED SOLUTION
Avatar of Sean Stuber
Sean Stuber

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Here is the requested text file.
idwg.csv