首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

insert into能不能一次插入两个相同的列?解决思路

2012-05-24 
insert into能不能一次插入两个相同的列?先上代码:insert into messtu(type,telno,telno) select 1,firs

insert into能不能一次插入两个相同的列?
先上代码:
insert into messtu(type,telno,telno) select '1',firstphonecode,secondphonecode from student

服务器: 消息 264,级别 16,状态 1,行 1
在结果列的列表中多次出现列名 'telno'。

这样是错误的.我真想把两个字段同时写到telno.可这样不行.有没有好的方法?

[解决办法]

SQL code
insert into messtu(type,telno) select '1',firstphonecode from studentunion allselect '1',secondphonecode from student 

热点排行