SQL数据库,如何查询数据库内含有某一列(某字段,如name)的所有表
2、查询数据库内含有字段(如 name=‘AAA’)的数据库内多有的表名。 展开
SQL数据库,查询包含列(字段,如名称)的数据库中的所有表的步骤如下:需要准备的材料是:计算机,sql finder。
1,首先,打开sql查询器并连接到相应的数据连接,例如测试库。
2,单击“查询”按钮并键入:select table_name来自information_schema.columns,其中table_schema =“test”和column_name =“name”;。
3,单击“运行”按钮,将查询符合条件的表名称。
4,将查询调整为:选择'store'作为table_name,`name`来自商店,其中`name` =“A”union all选择'stu'作为table_name,`name`来自stu where`name` =“A”Union所有选择'test'作为table_name,`name`来测试`name` =“A”,单击“运行”按钮查找名称为'A'的表的名称。
SQL数据库,查询数据库内含有某一列(某字段,如name)的所有表的步骤如下:
我们需要准备的材料分别是:电脑、sql查询器。
1、首先,打开sql查询器,连接上相应的数据连接,,例如test库。
2、点击“查询”按钮,输入:select table_name from information_schema.columns where table_schema="test" and column_name="name";。
3、点击“运行”按钮,此时会查询出符合条件的表名。
4、将查询语句调整为:select 'store' as table_name, `name` from store where `name`="A" union all select 'stu' as table_name, `name` from stu where `name`="A" union all select 'test' as table_name, `name` from test where `name`="A",点击“运行”按钮,即可查到含name='A'的表名。
应该是不需要存储过程的。下面通过查找字段名为姓名为例。
1.
select OBJECT_NAME(id) from syscolumns where id in(
select id from sysobjects where type='U')
and name='姓名'
2.第二个问题更简单了
select OBJECT_NAME(id) from syscolumns where id in(
select id from sysobjects where type='U')
and name like '%类型%'
有问题再追问吧。
看不懂??需要创建存储过程么??不知道怎么用,求详细方法。
里面已经是很详细的方法了。就直接把那一大段代码复制到你的数据库执行就OK了。后面的:
--exec Full_Search '口服液' ---这里的'口服液'换成你想要找的东西。
还有就是最前面的
use Database ---Database改成你的数据库的名称。比如master或者其他你自定义的数据库名字。