我的要求是通过concatinating更新表1中的描述字段和表2和3的描述。我会给你下面的结构。
table1 --P A D table2 --- P D table3 --- A D
表D与concatinating表2 D和表3 D
答案 0 :(得分:0)
INSERT INTO Table1 (Description)
SELECT CONCAT(t2.Description, t3.Description) FROM Table2 t2, Table3 t3
---- optional join here