I was wondering if anybody could help me with the following... which is related I think to my question here
I have two queries which are based on three tables - q1 is based on t1 and t3, q2 is based on q2 and q3. Each table has the fields {HID, yr, mo} and then some data fields. Each has {HID, yr, mo} as the primary key.
The two queries are structurally identical, with the following SQL:
The problem is that I can sometimes only open one of the queries for editing, and the other one is locked for editing, but then sometimes, the other one is editable and the other is not. Would anybody be able to tell me (a) why this might be, and (b) how I can work around it?
I have two queries which are based on three tables - q1 is based on t1 and t3, q2 is based on q2 and q3. Each table has the fields {HID, yr, mo} and then some data fields. Each has {HID, yr, mo} as the primary key.
The two queries are structurally identical, with the following SQL:
Code:
SELECT t1.HID, t1.yr, t1.mo, t1.somedata1, ..., ..., t3.somedatax FROM t1 INNER JOIN t3 ON (t1.mo = t3.mo) AND (t1.yr = t3.yr) AND (t1.HID = t3.HID);
Comment