table1-----------------------id userName1 aa2 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)当然这条语句是错的,呵呵!