Randaal Posted May 15, 2014 Share Posted May 15, 2014 Hi, could someone please give an SQL query that: In table: ps_product_langOnly for: id_lang=4 Sets for: available_now a specific term I have created this language after many of my products were created and it contains Czech words instead of English (ID 4), so I would like to bulk change this whole column ONLY in English so I don't need to manually set every single product separately. I hope you understand what I need :-) thanks Link to comment Share on other sites More sharing options...
Randaal Posted May 15, 2014 Author Share Posted May 15, 2014 I've done it. I am not sure if it helps someone but here is the query: UPDATE `database_name`.`ps_product_lang` SET `available_now` = 'Your Message Here' WHERE `ps_product_lang`.`id_shop` = 1 AND `ps_product_lang`.`id_lang` = 4; For shop ID #1, and language ID #4 Link to comment Share on other sites More sharing options...
vekia Posted May 15, 2014 Share Posted May 15, 2014 thank you for posting solution and for this brilliant query i marked topic as solved. Link to comment Share on other sites More sharing options...
Recommended Posts