• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    sql server 2012 数据库所有表里查找某字符串的方法
    复制代码 代码如下:

    USE [数据库名称];

     --1.定义需要查找的关键字。在搜索中,使用模糊搜索:LIKE '%@key_find%'
     DECLARE @key_find NVARCHAR(MAX) = '123';--假设是找字符串"123"

     --2.用游标Cursor_Table,遍历所有表
     DECLARE Cursor_Table CURSOR FOR
         SELECT name from sysobjects WHERE xtype = 'u' AND name > 'dtproperties';
     OPEN Cursor_Table;
     DECLARE @tableName NVARCHAR(MAX);
     FETCH NEXT from Cursor_Table INTO @tableName;
     WHILE @@fetch_status = 0
     BEGIN
         DECLARE @tempSQLText NVARCHAR(MAX) = '';

         --3.在表中,用游标columnCursor,遍历所有字段。注意,只遍历字符串类型的字段(列)
         DECLARE columnCursor CURSOR FOR
             SELECT Name FROM SysColumns WHERE ID = Object_Id( @tableName ) and
                                                                                 (
                                                                                     xtype = 35 or --text
                                                                                     xtype = 99 or --ntext
                                                                                     xtype = 167 or --varchar
                                                                                     xtype = 175 or --char
                                                                                     xtype = 231 or --nvarchar
                                                                                     xtype = 239 or --nchar
                                                                                     xtype = 241 --xml
                                                                                 )
         OPEN columnCursor;
         DECLARE @columnName NVARCHAR(MAX);
         FETCH NEXT from columnCursor INTO @columnName;
         WHILE @@fetch_status = 0
         BEGIN

             --4.在表的字段中,对每一行进行模糊搜索,并输出找到的信息。
             DECLARE @DynamicSQLText NVARCHAR(MAX) = 'IF ( EXISTS ( SELECT * FROM [' + @tableName + '] WHERE [' + @columnName + '] LIKE ''%' + @key_find + '%'' ) ) BEGIN DECLARE @CurrentTableCount Bigint = ( SELECT COUNT(*) From [' + @tableName + '] ); PRINT ''Find : Table [' + @tableName + '], Column [' + @columnName + '], Row Count:'' + CAST( @CurrentTableCount AS NVARCHAR(MAX) ) + ''.'';  END';
             EXEC( @DynamicSQLText );
             FETCH NEXT from columnCursor INTO @columnName
         END
         exec(@tempSQLText);
         CLOSE columnCursor;
         DEALLOCATE columnCursor;
         FETCH NEXT from Cursor_Table INTO @tableName;
     END
     CLOSE Cursor_Table;
     DEALLOCATE Cursor_Table;
    您可能感兴趣的文章:
    • mssql查找备注(text,ntext)类型字段为空的方法
    • sql server 临时表 查找并删除的实现代码
    • mysql 数据表中查找重复记录
    • sqlserver中查找所有包含了某个文本的存储过程
    • SQLserver中字符串查找功能patindex和charindex的区别
    • mysql data文件夹位置查找
    • MySQL慢查询查找和调优测试
    • android中sqlite的按条件查找的小例子
    • 查找sqlserver查询死锁源头的方法 sqlserver死锁监控
    • SQL中查找某几个字段完全一样的数据
    上一篇:SQLSERVER的排序问题结果不是想要的
    下一篇:oracle,mysql,SqlServer三种数据库的分页查询的实例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    sql server 2012 数据库所有表里查找某字符串的方法 sql,server,2012,数据库,所有,