zoukankan      html  css  js  c++  java
  • SQL 对于有N多字段的表,踢出不需要的字段,自动频出剩余字段的SQL语句

    --本例采用northwind数据库的Employees 表,拼出不包括title和firstName 两个字段的SQL 语句

    --select * from Employees

    declare @index int --默认循环起始值1
    declare @ExceptName varchar(200)--要排除的字段名称
    declare @indexString int--索引值
    declare @InTable varchar(200) --要拼串的表
    declare @sql varchar(600) --频出的sql语句
    select @ExceptName='title,firstName',@index=1,@sql='select ',@InTable='Employees',@indexString=0 --初始化条件

     
     begin
         declare @tempStr nvarchar(800)
         declare myCur cursor for ( select name from syscolumns where id=object_id(N''+@InTable+'') )
         open myCur
         fetch next from myCur into @tempStr
         while @@fetch_status = 0
         begin
            
      set @tempStr=@tempStr
      set @indexString=CHARINDEX(@tempStr, @ExceptName)
      if(@indexString=0)
      set @sql=@sql+@tempStr+','
      
       fetch next from myCur into @tempStr
          end
          close myCur
          deallocate myCur
    end
     SELECT @sql=SUBSTRING(@sql,1,(len(@sql)-1))
    set @sql=@sql+' from  '+@InTable
    select @sql

    --再判断两个字段 名称相同的问题上,还是有点问题的,再考虑

    select EmployeeID,LastName,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Photo,Notes,ReportsTo,PhotoPath from  Employees

  • 相关阅读:
    基本的Web控件二
    基本的Web控件一
    centos更改默认语言
    nginx优化配置
    使用nginx的proxy_cache做网站缓存
    centos7配置笔记
    redis批量删除
    Linq常用操作
    MVC ViewData和ViewBag[转]
    Transact-SQL的除法问题
  • 原文地址:https://www.cnblogs.com/kaixinmenghuan/p/2148900.html
Copyright © 2011-2022 走看看