There are content and contentvalues . It is necessary to copy data from one table to another. The DB is one, but the columns are different.
From the content table, the rows whose ID are equal to content_id in the contentvalues table, copy the content.longtitle field to the contentvalues.value field. Modify only strings whose tmplvarid is 13.
Did so, but gives an error:
update contentvalues, content set contentvalues.value=content.longtitle where contentvalues.tmplvarid=13;