I need to replace the cell value in the database if it falls under the condition. I make such a request:
UPDATE oc_product_to_category SET category_id = 74 WHERE category_id = 68 OR category_id = 70 OR category_id = 69 OR category_id = 72 OR category_id = 73 OR category_id = 85 OR category_id = 84 OR category_id = 71
I get the error specified in the header. How to fix?