J
James
I have the following SQL QUERY:
-----------------------------------------------------------
Select Title, CD as MediaType, tblCDs as BaseTable from
[tblCD's]
UNION
Select Title, [DVD Title] as MediaType, [tblDVD's] as
BaseTable from [tblDVD's]
UNION
Select Title, VCD as MediaType, tblVCDs as BaseTable from
[tblVCD's]
UNION
Select Title, Software as MediaType, tblSoftware as
BaseTable from tblSoftware
UNION
Select Title, MP3Title as MediaType, tblMP3Title as
BaseTable from tblMP3Title
UNION
Select Title, [MP3's on CD] as MediaType, tblMP3List as
BaseTable from tblMP3List;
-----------------------------------------------------------
It keeps prompting me for Title,CD,tblCD's and other
random things...
All I want is a simple UNION query... I have had help with
this one from people in these newsgroups....
What could be thr problem?
all I want it a UNION query to unite all my tables
together so that I can search it as I am creating a search
form...
Many Thanks
James
-----------------------------------------------------------
Select Title, CD as MediaType, tblCDs as BaseTable from
[tblCD's]
UNION
Select Title, [DVD Title] as MediaType, [tblDVD's] as
BaseTable from [tblDVD's]
UNION
Select Title, VCD as MediaType, tblVCDs as BaseTable from
[tblVCD's]
UNION
Select Title, Software as MediaType, tblSoftware as
BaseTable from tblSoftware
UNION
Select Title, MP3Title as MediaType, tblMP3Title as
BaseTable from tblMP3Title
UNION
Select Title, [MP3's on CD] as MediaType, tblMP3List as
BaseTable from tblMP3List;
-----------------------------------------------------------
It keeps prompting me for Title,CD,tblCD's and other
random things...
All I want is a simple UNION query... I have had help with
this one from people in these newsgroups....
What could be thr problem?
all I want it a UNION query to unite all my tables
together so that I can search it as I am creating a search
form...
Many Thanks
James