sql - Updating a table with a Foreign Key from another table - MS Access -


i trying update field on table foreign key in table. have used left join when run statement, confirms number of rows updated cannot find fields in destination table being updated.

update tblstagingtable left join tblapprovals      on tblstagingtable.approval_id = tblapprovals.approval_id    set tblstagingtable.approval_id = [tblapprovals].[approval_id]  (((tblstagingtable.fiscal_year)="2017-2018")); 


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -