For those of you forced to use Microsoft Access, thus needing to write bad SQL, here's how you would write an UPDATE table SELECT FROM subquery statement:
UPDATE A, B
SET A.column = B.column
WHERE A.key = B.key
which is equal to SQL's:
UPDATE A
SET column = (
SELECT B.column
FROM B
WHERE A.key = B.key)
No comments:
Post a Comment
With great power comes great responsibility