3 个解决方案
#1
insert into C表(Name,Code) select Name,Code from a,b;
#2
在INSERT中写明具体字段
insert into C(Name,Code) select Name,Code from a,b where a.id=b.id;
insert into C(Name,Code) select Name,Code from a,b where a.id=b.id;
#3
1、将C表中时把No字段的数据类型设置成“自动编号”
2、就是用代码实现。
单独用一条SQL语句好象无法实现你说的功能
2、就是用代码实现。
单独用一条SQL语句好象无法实现你说的功能
#1
insert into C表(Name,Code) select Name,Code from a,b;
#2
在INSERT中写明具体字段
insert into C(Name,Code) select Name,Code from a,b where a.id=b.id;
insert into C(Name,Code) select Name,Code from a,b where a.id=b.id;
#3
1、将C表中时把No字段的数据类型设置成“自动编号”
2、就是用代码实现。
单独用一条SQL语句好象无法实现你说的功能
2、就是用代码实现。
单独用一条SQL语句好象无法实现你说的功能