select
ph.prod_id_fk as prod_id_fk,
ph.posizione as posizione,
ph.lingua as lingua,
p.id as id,
p.nome as nome,
p.immagine as immagine,
pt.breve_descrizione as descrizione,
pt.prod_id_fk,
pt.visibile
from prodotto_home as ph
left join prodotto as p on ph.prod_id_fk=p.id
left join prodotto_txt as pt on prod_id_fk=p.id
where pt.visible='y' and ph.lingua='it'
order by ph.posizione
ho fatto cosi ma nn funzia... qualche aiuto ?