Hello,
I am creating a DB with a table called "References", which is joined to multiple other tables; let's call them tbl1, tbl2, tbl3, tbl4 and tbl5, tbl6.
I have 6 queries that, when ran, ask for a reference name, and output 1 field "name" with everything that is joined to that reference.
What I want, is to allow the user to look at all the things that one reference is joined to.
SO! what I did was make a form with 5 subforms, displaying the 6 queries that I made.
This is fine, exept now the user has to enter in the reference name 6 times.
Any ideas / alternate methods?
I am in school for programming, and know my way around SQL queries.
PS: I also have made a query that shows everything I want, with only 1 prompt, which looks like this:
SELECT qryRefIDtoTP1Name.name AS [cool],
qryRefIDtoTP2Name.name AS [cooler],
qryRefIDtoTP3Name.name AS [coolest],
qryRefIDtoTP4Name.name AS [massive cool],
qryRefIDtoTP5.question AS [Question cool],
qryRefIDtoTP6Name.name AS [cooling point]
FROM qryRefIDtoTP1Name, qryRefIDtoTP2Name, qryRefIDtoTP3Name, qryRefIDtoTP4Name, qryRefIDtoTP5, qryRefIDtoTP6Name;
but the results are every combination of all of the rows in each query result.