Can someone help me with this query, which gives the error message "operation must use an updatable query"? Thanks a lot.
this following query works fine:
Code:
UPDATE publications set publications.pmcid = (select fname.pmcid from fname where fname.pmid=publications.pubmedid)
Code:
UPDATE publications inner join fname on fname.pmid=publications.pubmedid set publications.pmcid = fname.pmcid
Comment