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:
Code:
select
Emp_No,
Emp_Name,
Salary
from
Employee
where
Band = "A"
union
select
Emp_No,
Emp_Name,
Salary
from
Employee
Leave a comment: