I built a query based on a child table but the join is not the way I want it to be and it's not allowing updates.
I have other similar queries based on similar child tables which are all one-to-one linked on the main table by a unique patient ID number. All of the other queries work exactly as they are supposed to work and allow updates.
However, when I try to inner join this query with the patient ID number on the child table, it will not allow updates and I have been racking my brain for days now and I still don't have a clue why this query is not working correctly.
I am new to Access and unsure what information you might need in order to help me so I am attaching everything I can think of. Any help, or even a clue about where to look, would be greatly appreciated.
Here's the SQL from the query.
SELECT [6_Extubation].ID, [6_Extubation].*
FROM 6_Extubation INNER JOIN [02-ActivePatientsQuery] ON
[6_Extubation].Patient_ID_Number = [02-
ActivePatientsQuery].Patient_ID_Number;
Here's a photo of the query structure.
And here's a photo of my table relationship structure.
Thanks for taking a look!