sql - Update Inner Join Operation must be updateable query -
trying update purchase order information in case of purchase order revisions.
update tblpo         inner join qrypoln_update_info             on tblpo.poln = qrypoln_update_info.poln     set tblpo.[line quantity] = [qrypoln_update_info].[line quantity]  (((qrypoln_update_info.poln)=[tblpo].[poln]));   getting "operation must updateable query" error. ideas how fix?
got it.
i using group in 1 of previous queries. if put data temp table , run update off temp table, gets around error. answer found @ https://www.fmsinc.com/microsoftaccess/query/non-updateable/index.html
Comments
Post a Comment