zoukankan      html  css  js  c++  java
  • SQLServer查询所有表所有字段包含xx的信息

    从系统表自动生成sql语句来运行得到结果

    select a.name as columnname,object_name(a.id)as tablename into t from syscolumns a,

    sysobjects b,

    systypes c

    where a.id=b.id  

    and a.xtype=c.xtype

    and b.xtype='u'

    and c.name in('varchar','nvarchar','char','nchar','text','ntext')

    and object_name(a.id)<>'t'

     

    go

     

    create function udf_genSQL(@tableName varchar(1000),@keyword varchar(1000))

    returns varchar(8000)

    as

    begin

        declare @sql varchar(8000)

        set @sql='select * from '+@tableName +' where 1=1 '

        select @sql=@sql+' or '+

           columnname +' like ''%'+@keyword+'%''' from t

        where tablename=@tablename

        return @sql

    end

    go

     

    select dbo.udf_genSQL(tableName,'a') from t group by tablename

     

    drop table t

    drop function dbo.udf_genSQL

     

     

     

     


  • 相关阅读:
    滚动 冻结 div demo
    JavaScript去除字符串两边空格trim
    window.showModalDialog以及window.open用法简介
    转: 分享我创业4年失败的经历
    [转]JavaScript break跳出多重循环
    showModalDialog 传值及刷新
    防止文字撑开表格,强制表格大小
    带记忆功能的表单
    checkbox 全选
    asp教程:关于jquery跨域彻底的解决方法
  • 原文地址:https://www.cnblogs.com/cl1024cl/p/6204872.html
Copyright © 2011-2022 走看看