Scenario: We generate records for requests to be approved by a manager. While pending, the manager changes (updated overnight from HR feeds). We need to update the requests to indicate the new manager.
Here's an abbreviated version of the query that would should do that:
update (select grw.approver_user_id, gup.supervisor_id
from gs3.user_role gur
join gsu.user_profile gup
on gur.user_id = gup.user_id
join gs3.request_workflow grw
on gur.user_role_id = grw.user_role_id
and gup.supervisor_id != grw.approver_user_id -- records with new mgr
where grw.auth_status_cd = 'SUBMITTED') -- reapprovals currently open
set grw.approver_id = gup.supervisor_id;
The problem: the account executing this query only has read privileges on gsu.user_profile.
The inner select works fine and returns all the rows I need to update... but even though I'm not updating gup.supervisor_id, it seems I'm required to have write access to that table. If I execute this as a user that does have write access to gsu.user_profile, the update is successful.
Is there a logical reason for this? I would rather not grant permissions to an account that it does not need.
Thanks!
Update
Accepting Thomas' answer... though it doesn't really answer my question of why the account executing an update join would need update privileges to a table it's not updating, I can see the logic in saying "Don't use update joins, they're not ISO standard".
It's a shame, because the difference between what I have and Thomas's suggestion is that there aren't any nested selects in mine. If anyone knows an ISO standard way of doing a query like this without nested selects, I'd love to know!
Thanks, Thomas!