ietax Posted February 11, 2017 Share Posted February 11, 2017 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 More sharing options...
ietax Posted March 6, 2017 Author Share Posted March 6, 2017 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now