Jump to content

Copiare "name" su didascalia immagine


ietax

Recommended Posts

salve, ho molti prodotti che hanno la descrizione dell'immagine sbagliata e dovrei correggerle.

Chiaramente , avendo molti prodotti mi sembra impossibile procedere manualmente.

 

Possibile intervenire nel database e copiare tutti i campi "name" della tabella ps_product_lang nei corrispondenti campi della tabella delle immagini? ps_image_lang?

 

Riesco ad estrarmi una tabella

 

SELECT l.*,p.* FROM `ps_image_lang` l
join `ps_image` i on i.`id_image` = l.`id_image`

join  `ps_product_lang` p on i.`id_product`=p.`id_product`

 

ma non riesco a sostituire... grazie

Link to comment
Share on other sites

  • 4 weeks later...

risolto.. per tutti quelli che fossero interessati.

 

esempio

 

UPDATE ps_image_lang AS l 
INNER JOIN ps_image AS i ON (i.id_image = l.id_image)
INNER JOIN ps_product_lang AS pl ON (pl.id_product = i.id_product)
SET l.legend = pl.name
WHERE l.id_lang = 2
AND pl.id_lang = 2
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...