复制表(只复制结构,源表名:a 新表名:b)

  SQL: select * into b from a where 1<>1

  拷贝表(拷贝数据,源表名:a 目标表名:b)

  SQL: insert into b(a, b, c) select d,e,f from b;

posted on 2009-05-07 15:01  新郎  阅读(149)  评论(0编辑  收藏  举报