query looks fine to me :)
why do you want to use OR instead of UNION?
Main Topics
Browse All TopicsI need to rwrite this query using an OR rather than a union. I have never done that and need help on how to do it. I've been looking on Oracle PL/SQL programming book by Steven Fewerstein but have not found a good example or a good explanation on how to do it.
Your help is greatly appreciated, thanks experts!.
Select Trim(s.last_name)||', '||Trim(s.first_name) As Name, program_cd as Program, photo From sis.student_facts s, sis.rosa r, blkbrd.blkbrd_people b, sis.name n, blkbrd.photo_v v Where r.term = 'xxxx' and r.class IN ('xxxx') and s.person_id = r.person_id and b.match_ssn = trim(n.ssn) and s.person_id = b.person_id and r.person_id= b.person_id and v.person_id = r.person_id and v.person_id = b.person_id union SELECT Trim(n.last_name)||', '||Trim(n.first_name) As Name, ts.billing_program_cd AS Program, photo from blkbrd.blkbrd_people b, sis.name n, sis.SACT S,sis.term t, sis.tsta ts, blkbrd.photo_v v WHERE(b.match_ssn = Trim(n.ssn)) and S.person_id = N.person_id AND S.activity_cd IN (xxxx) and term_begin_dt <= s.activity_end_dt and term_end_dt >= s. activity_begin_dt and t.term ='xxxx' and ts.term = t.term and ts.person_id=n.person_id and v.person_id = n.person_id and v.person_id = s.person_id order by 3;
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: MikeOM_DBAPosted on 2009-08-31 at 12:29:34ID: 25225610
You could try something like this:
Select allOpen in new window