R
Ripper
Why can't access just read my mind. It would be easier.
I have 2 table
tblStudents-Stores Name, ID#s, Ethnicity, Etc
tblTests - Stores which particular tests the students should take Math,
Reading, Science Etc.
Currently tblTests is empty. I would like to set up a query that links the
tblStudents with tblTests via the LocID number with all records from
tblStudent showing. LocIDis the primary key for both tables. When I tried
to link them it makes the query uneditable. I looked on the site and tried
to include all the fields from tblTests and only last and first name from
tblStudents, to no avail.
Anyone willing to attempt it?
SELECT tblStudents.Last, tblStudents.First, tblWatch.ID, tblWatch.LocID,
tblWatch.StudentWatch, tblWatch.MathWatch, tblWatch.ReadWatch,
tblWatch.WriteWatch, tblWatch.SciWatch, tblWatch.SSWatch,
tblWatch.NewStuWatch, tblWatch.Watch2, tblWatch.Watch3
FROM tblWatch RIGHT JOIN tblStudents ON tblWatch.LocID = tblStudents.LocID;
I have 2 table
tblStudents-Stores Name, ID#s, Ethnicity, Etc
tblTests - Stores which particular tests the students should take Math,
Reading, Science Etc.
Currently tblTests is empty. I would like to set up a query that links the
tblStudents with tblTests via the LocID number with all records from
tblStudent showing. LocIDis the primary key for both tables. When I tried
to link them it makes the query uneditable. I looked on the site and tried
to include all the fields from tblTests and only last and first name from
tblStudents, to no avail.
Anyone willing to attempt it?
SELECT tblStudents.Last, tblStudents.First, tblWatch.ID, tblWatch.LocID,
tblWatch.StudentWatch, tblWatch.MathWatch, tblWatch.ReadWatch,
tblWatch.WriteWatch, tblWatch.SciWatch, tblWatch.SSWatch,
tblWatch.NewStuWatch, tblWatch.Watch2, tblWatch.Watch3
FROM tblWatch RIGHT JOIN tblStudents ON tblWatch.LocID = tblStudents.LocID;