Copy a field column of one table to another
Sep 12
UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user
UPDATE table1 SET field1 = field2
The beginning of knowledge is the discovery of something we do not understand. (Frank. Herbert)
Sep 12
UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user
UPDATE table1 SET field1 = field2