I ahve the following query that works...
I want to alter that to do an UPDATE on the recipes table and
SET subcat = 'agnostic'
can this be done with the cross table nature of it? or do I need to make a script and just get a list of recipe ID's and then run the update on them?
Code:
SELECT items.item_name, recipes.* FROM `recipes`, `items` WHERE items.item_id = recipes.item_id AND (recipes.tradeskill = 'Tailoring' OR recipes.tradeskill = 'Smithing') AND items.item_name LIKE "%of the skeptic"
SET subcat = 'agnostic'
can this be done with the cross table nature of it? or do I need to make a script and just get a list of recipe ID's and then run the update on them?
Comment