表1查询到的结果为字段1  字段2 字段3   字段4  字段5  字段6
1      a      b        c     b     e
2      e      w        q     r     u
3      ll     ff       ee    kk    jj 现在请问 如何把这个查到的结果另外添加到另一张表而且我只需要字段1 字段3  和字段6的数据就是把下面的内容添加到表2  表2里就三个字段
字段1  字段3  字段6
1      b         e
2      w         u
3      ff        jj
请问是否可以实现

解决方案 »

  1.   

    insert into 表2(字段1,字段3,字段6) select 字段1,字段3,字段6 from 表1
      

  2.   

    insert into 表2(字段1,字段3,字段6) values (select 字段1,字段3,字段6 from 表1)
      

  3.   

    Private Sub Command2_Click()
    SQL = "insert into biao2(字段1,字段3,字段6) select字段1,字段3,字段6 from biao1"
      Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " + App.Path + "/db1.mdb;Persist Security Info=False"   Adodc1.RecordSource = SQL
    End Sub
    好像不行唉 忘再赐教
      

  4.   

    insert into 表2(字段1,字段3,字段6) select 字段1,字段3,字段6 from 表1