Which query would be the fastest: My own tests do not show any obvious results:
query1:
UPDATE items, brands SET items.brand_id = brands.id WHERE brands.name = 'apple'
--vs--
query2:
UPDATE items SET brand_id = (SELECT id FROM brands WHERE name = 'apple')
I can't find any data on this with Google; maybe some SQL experts here know the answer?
Looking just at the syntax I personally prefer the first. Whilst others I speak prefer the second (for being more obvious)?