How can I LIMIT rows updates in MySQL if more than one table is involved?
- by Taz
I am trying to run an UPDATE query
UPDATE ner.nerdataset, ner.shortabstracts
SET ner.nerdataset.ShortAbstract=ner.shortabstracts.ShortAbstract
WHERE ner.shortabstracts.Resource=ner.nerdataset.ResourceURI
LIMIT 10;
As MySQL does not allow the use of LIMIT when more than one table is involved in UPDATE what else can be done to limit this?