这里我有两张桌子。一个被调用table1并有一个列word,它是数据类型varchar(500),看起来像
a
pen
book
like
nice
.....
另一个表是table2并且有一个meaning数据类型列,ntext看起来像
one
a long thin object used for writing
reading material
to enjoy
pleasant
.......
现在我想加入 table1 和 table2 并与他们一起制作另一张桌子table3
table3将有两列是word和meaning“列,看起来像
a one
pen a long thin object used for writing
book reading material
like to enjoy
nice pleasant
..... .......
我怎样才能在 SQL Server 中做到这一点?