摘要: 1、将完全相同字段的两表数据合并: select into 新表 from 合并A表 union all select * from 合并B表2、替换某字段内的某些特定字符 update 表名 set 字段名=replace(convert(varchar(8000),字段名),'要替换的','替换为的') 阅读全文
posted @ 2009-01-06 18:33 missthe 阅读(228) 评论(0) 推荐(0) 编辑