SQL 数据插入问题
table1
-----------------------
id userName
1 aa
2 bb
table2
--------------------
id userName
上面是两个表的结构
我想通过 insert into table1 select userName from table2
同时我想把 table2 的 id 都赋值为 1
怎么实现啊?
table1
-----------------------
id userName
1 aa
2 bb
table2
--------------------
id userName
上面是两个表的结构
我想通过 insert into table1 select userName from table2
同时我想把 table2 的 id 都赋值为 1
怎么实现啊?
没有主键,能不能用一条语句实现啊?
像这样:Insert Into table2 values(1 as UserID,select username from table1)
当然这条语句是错的,呵呵!