I am attempting to utilize several Select Statements to combine the results into a single dataset, but am not having any luck. I am hoping that someone might be able to lend a hand. I am an absolute beginner with Crystal (version 9) so any assistance you might be able to offer will be most gratefully appreciated.
Here is the SQL that I want to use:
-----------------------------------
---------------------------------------
Thanks again for your help,
Austin
Here is the SQL that I want to use:
-----------------------------------
Code:
select lname, fname, middle, officename, address1, address2, city, state, zip
from tbl_PanelMembers
union
select lname, fname, middle, officename, address1, address2, city, state, zip
from tbl_Litigants
Union
select lname, fname, middle, officename, OfficeStreetaddress1, OfficeStreetaddress2, city, state, zip
from tbl_GrievanceCommittee
Union
select lname, fname, middle, officename, address1, address2, city, state, zip
from tblMediators
Union
select lname, fname, mname, officename, address1, address2, city, state, zip
from tblAttorneys
Thanks again for your help,
Austin