Jump to content

sql per reference


ilario

Recommended Posts

ciao a tutti

avrei bisogno di una sql per inserire la referenza di tutte le combinazioni, ne ho circa 70, io pensavo di inserire "nomeprodotto-nomeattributo" e visto che non possono esserci spazi sostituirli con un trattino

qualcuno è così gentile da darmi una mano per cortesia

ciao e buona serata

Ilario

 

Link to comment
Share on other sites

ho trovato questa sql, ma prima di fare pasticci, mi potreste dare un consiglio

UPDATE `ps_product_attribute` pa
SET pa.`reference` = REPLACE(REPLACE(LOWER(CONCAT_WS(
	"_",
	LEFT((SELECT CONVERT(`name` USING ascii) FROM `ps_product_lang` pl WHERE pl.`id_product` = pa.`id_product` LIMIT 1), 10),
	pa.`id_product`,
	pa.`id_product_attribute`
)), "?", ""), " ", "")
WHERE pa.`reference` IS NULL
OR pa.`reference` = "";

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...