如何通过一个值查找到值所在的SQL数据库表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过一个值查找到值所在的SQL数据库表相关的知识,希望对你有一定的参考价值。

declare @cloumns varchar(40) declare @tablename varchar(40) declare @str varchar(40) declare @counts int declare @sql nvarchar(2000) declare MyCursor Cursor For  Select a.name as Columns, b.name as TableName from syscolumns a,sysobjects b,systypes c  where a.id = b.id and b.type = 'U'  and a.xtype=c.xtype and c.name like '%char%' set @str='张三' Open MyCursor Fetch next From MyCursor Into @cloumns,@tablename While(@@Fetch_Status = 0) Begin  set @sql='select  @tmp_counts=count(*) from ' [email protected]+ ' where ' [email protected]+' = ''' [email protected]+ '''' execute sp_executesql  @sql,N'@tmp_counts int out',@counts out  if @counts>0  begin  print '表名为:'[email protected]+',字段名为'[email protected]  end Fetch next From MyCursor Into @cloumns,@tablename End Close MyCursor Deallocate MyCursor


以上是关于如何通过一个值查找到值所在的SQL数据库表的主要内容,如果未能解决你的问题,请参考以下文章

Sql Server 中 根据具体的值 查找该值所在的表和字段

我知道字段内容,并不知道字段名,如何在数据库中快速找到或查询出所在的表?SQL SERVER 2000。

SQL如何查询出某一列中不同值出现的次数?

SQL 查询某字段数据所在的表

在 Sql Server 中,如何将游标中的值放入临时表中?

SQL开发实战技巧系列(十五):查找最值所在行数据信息及快速计算总和百之max/min() keep() over()fisrt_valuelast_valueratio_to_report