0

我有两张桌子:

表 A:条目

id_1, Name_1, col_2 
id_2, Name_1, col_3 
id_3, Name_1, col_4 

表 B:条目

id, Name_1, Code_1, Code_2

现在我想创建一个基于条目 Name_1 加入的新表 C

id_1, Name_1, col_2 ,Code_1, Code_2 
id_2, Name_1, col_3 , Code_1, Code_2
id_3, Name_1, col_4 , Code_1, Code_2

如何编写执行上述任务的脚本

4

1 回答 1

0

如下图使用join

select sp.Name,cb.col from table1 as cb join table2 as sp on cb.nale= sp.name
于 2013-09-23T11:18:21.710 回答