摘要: 需要包括有几种情况一、A表中有的字段B表无二、B表有的A表无三、两个表字段名不一致的 如果只对比字段名,可以这样 一、A表中有的字段B表无select name from syscolumns where id=object_id('A') and name not in(select name f 阅读全文
posted @ 2018-08-09 10:10 称虚圆 阅读(1794) 评论(0) 推荐(0) 编辑