473,395 Members | 1,496 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Avoiding UNIONS

Hi,
I have a query with three select statements joined using two UNION's.
All three queries differ ONLY in the where condition.

It goes something like this:
Expand|Select|Wrap|Line Numbers
  1. select
  2.     Emp_No,
  3.     Emp_Name,
  4.     Salary
  5. from
  6.     Employee
  7. where
  8.     Band = "A"
  9. union
  10. select
  11.     Emp_No,
  12.     Emp_Name,
  13.     Salary
  14. from
  15.     Employee
  16. where
  17.     Band = "B"
  18. union
  19. select
  20.     Emp_No,
  21.     Emp_Name,
  22.     Salary
  23. from
  24.     Employee
  25. where
  26.     Band = "C"
Is there a way to combine these queries?
Apr 11 '07 #1
2 1589
sure, you can also write this query
Expand|Select|Wrap|Line Numbers
  1. select
  2.     Emp_No,
  3.     Emp_Name,
  4.     Salary
  5. from
  6.     Employee
  7. where
  8.     Band  in ('A','B','C')
  9.  
Apr 11 '07 #2
Or, maybe just a tiny bit faster, but more verbose:
Expand|Select|Wrap|Line Numbers
  1. SELECT
  2.     Emp_No,
  3.     Emp_Name,
  4.     Salary
  5. FROM
  6.     Employee
  7. WHERE
  8.     Band='A' OR Band='B' OR Band='C'
  9.  
But the IN statement is so handy.
Apr 13 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

15
by: David | last post by:
Some developers in my group are using UNIONS to define their data types in a C++ program for an embedded system. Are there any pro and cons in doing this when you can define a CLASS to do the same...
8
by: SteveM | last post by:
The general consensus I am getting is that nobody really uses unions much (engineers here at work) but this is an academic exercise for me so I am looking for an answer (I know there may be better...
6
by: Neil Zanella | last post by:
Hello, I would like to know whether the following C fragment is legal in standard C and behaves as intended under conforming implementations... union foo { char c; double d; };
16
by: Tim Cambrant | last post by:
Hi. I was reading up a bit on the features of C I seldom use, and I came across unions. I understand the concept, and that all the contained variables etc. share the same memory. Thus, when a new...
3
by: Colin Kern | last post by:
I'm less familiar with C than I am with C++, and right now I have a problem with many structs I have defined where using C++ inheritance classes would be perfect. For the functions that don't use...
23
by: rohit | last post by:
Hi, In my couple of years of experience, I have never found a single instance where I needed to use unions and bitfields(though I have used structures).I was just imagining where would these find...
4
by: uralmutlu | last post by:
Hi, I was wandering if I can have classes in unions? I basically have source code in a format very similar to: union example { ClassA variable1; ClassB variable2; };
67
by: bluejack | last post by:
A recent post asking for help with unions reminded me of this component of the C language that I have only used a couple of times, and those almost entirely out of personal whim -- Unions for the...
26
by: Old Wolf | last post by:
Ok, we've had two long and haphazard threads about unions recently, and I still don't feel any closer to certainty about what is permitted and what isn't. The other thread topics were "Real Life...
11
by: pereges | last post by:
Hello, can some one please guide me a little into using unions. I read about unions in K & R but I am finding it difficult to apply to my problem at hand. I want to save up some space by using...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.