OK, I'm still somewhat new to this, but I've been able to figure out everything else.
I'm trying to build a site rating system. So I need to join 3 tables. Tables 1 and 2 are easy but joining table 3 to them is the problem.
Table1 is the master, table2 joins to it with a 1 to 1 ratio on the ID field (all of table1, blanks on table2 where no match) but table3 I need to do some calculations on. Table3 (the review table) has multiple entries for one ID. I also have 5 seperate rating values that calculate to an overall rating. See below...
Table1 Table2 Table3
idField idField idField Value1 Value2 Value3(calc)
ID=1 ID=1 ID=1 5 6 (value1+value2)/2
ID=2 ID=2 ID=1 6 7 (value1+value2)/2
So I need to have ID=1 (table1&2) and an average of Value1, Value2 and Value3