请问把数据库中一个表的某些数据,放到另一个表中,代码如何写?谢谢!急(50分)

  • 主题发起人 主题发起人 shimingxing
  • 开始时间 开始时间
S

shimingxing

Unregistered / Unconfirmed
GUEST, unregistred user!
请问我想把table1中的数据放到table2中!代码该如何写!能否给个例子?谢谢啊万分!!
第一个表table1中的表头computernum下面的数据和weipwd下面的数据一一对应(事先数据已经输入好了)。第二个表中也有表头computernum和weipwd。我想只输入computernum到table2中,然后把相应的weiped从table1中调到table2中的weipwd中。这样如何实现呢?谢谢指导!!感谢!能帮点就帮点吧,代码我不太会写!希望大家帮帮我,谢谢了!
 
大概是这样的:
insert into table2 (computernum, weipwd) Select computernum, weipwd From table1
 
insert into table2 (computernum, weipwd) Select computernum, weipwd From table1 where table2.computernum=table1.computernum
 
thanks!good
 
多人接受答案了。
 
后退
顶部