直接使用select * newtable select * from oldtable不就行了

解决方案 »

  1.   

    使用sql语句最方便
    SELECT Shippers.* INTO NewShippers  
    FROM Shippers
      

  2.   

    1.open oldtable
    2.open newtable
    3.read one record from oldtable
    4.write to newtable 
    5.move next record in oldtable
    循环3,4直到结束
      

  3.   

    在查询的时候使用select,在按下该按钮时,使用同样的条件运行一个insert into table select xxx即可
      

  4.   

    顺便问一下:Recordset中的记录能否直接存入另外一个表中?
    载存入记录之前要先清空表,如表中无记录,执行sql语句会不会出错?