摘要: 数据库最常用语句 1、复制表(只复制结构,源表名:a 新表名:b) 法一:select * into b from a where 11 法二:select top 0 * into b from a 2、拷贝表(拷贝数据,源表名:a 目标表名:b)insert into b(a, b, c... 阅读全文
posted @ 2014-08-07 17:03 阿尔法钻石狗 阅读(381) 评论(0) 推荐(0)