Jump to content

(SOLVED)<>Product names problem


Recommended Posts

Hello, again i need some help from you guys.

We have a lot of products and all are typed deferent. Some with upercase some lower some both so is there a way to mass change all product names for example to all lowercase and capitalize ?

Pls hel me how to do it faster so i dont need to edit one to one ....

Edited by shadyns (see edit history)
Link to comment
Share on other sites

you can use sql query

 

capitalize:

UPDATE ps_product_lang set name= CONCAT(UPPER(LEFT(name, 1)), SUBSTRING(name, 2));

uppercase:

UPDATE ps_product_lang set name=upper(name);

lowercase:

UPDATE ps_product_lang set name=lower(name);
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...