A family of Microsoft relational database management systems designed for ease of use.
When I ran the update query, I expected ID 1,4, and 6 to be set to TRUE.
That’s what I’d expect. You didn’t by any chance write the query as:
UPDATE TBL
SET TBL.Submitted = TRUE
WHERE EXISTS
(SELECT *
FROM TBLQ
WHERE TBLQ.ID = TBLQ.ID);
Another method would be:
UPDATE TBL
SET TBL.Submitted = TRUE
WHERE ID IN
(SELECT ID
FROM TBLQ);