I have a database for my eCommerce site, I am looking to remove the a the category out of the products field. I can do it manually using:
UPDATE `master_database`.`products`
SET `product_name` = 'Xperia Z'
WHERE `products`.`product_id` =5107;
So I've removed the word "Sony" out like this but how would I remove "Sony" out of all of the rows that have them in the products table?