I need replace values
Table dict_title
Column1 ENG - Column2 FIN
white - valkoinen
black - musta
2000+ words for replace
Table new_products
Column content
white phone
black phone
about 10000 records
Now i try do this query
UPDATE new_products , dict_title
SET new_products.title =
REPLACE (new_products.title, dict_title.eng, dict_title.fin)
But this query handle only first line of dict_title table. How i can do replace from all table?
Thank you