Update a table with data from another table
# 问题
table1
id
name
description
1
a
aaa
2
b
bbb
3
c
ccc
table2
id
name
description
1
x
xxx
2
y
yyy
通过 id 更新 table2 的 name 和 description 到 table1
result
id
name
description
1
x
xxx
2
y
yyy
3
c
ccc
test data
1234567891011121314151617181920create table table1( id number, name...
more...