摘要: 1、说明:复制表(只复制结构,源表名:a 新表名:b) 法一:select * into b from a where 1<>1法二:select top 0 * into b from a2、说明:拷贝表(拷贝数据,源表名:a 目标表名:b)insert into b(a, b, c) selec 阅读全文
posted @ 2016-08-02 11:41 钱佬 阅读(377) 评论(0) 推荐(0) 编辑