I need to fulfill the following queries
UPDATE translations SET translation = (SELECT description FROM content WHERE id = 10) WHERE id = 1;
Now I use infile load data to do inserts and replacements, but what I want in esense is to update only 1 field for each row in this table, without triggering the keys. What could be the syntax for this, note that queries only affect existing strings.
Thanx
source
share