三.技巧 1.1=1,1=2的使用,在SQL语句组合时用的较多 “where 1=1” 是表示选择全部 “where 1=2”全部不选, 如: if @strWhere !='' begin set @strSQL = 'select count(*) as Total from [' + @tblName + '] where ' +@strWhere end else begin set @strSQL = 'select count(*) as Total from [' + @tb…
二.提升 1.说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用) 法一:select * into b from a where 1<>1(仅用于SQlServer) 法二:select top 0 * into b from a 2.说明:拷贝表(拷贝数据,源表名:a 目标表名:b)(Access可用) insert into b(a, b, c)select d,e,f from b; 3.说明:跨数据库之间表的拷贝(具体数据使用绝对路径) (Access可用) in…