SQL数据库,如何查询数据库内含有某一列(某字段,如name)的所有表

2024-11-22 00:32:38
推荐回答(4个)
回答1:

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'的表的名称。

回答2:

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'的表名。

回答3:

应该是不需要存储过程的。下面通过查找字段名为姓名为例。
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 '%类型%'
有问题再追问吧。

回答4:

详细方法和语句可以参考我的博客:
http://blog.sina.com.cn/s/blog_9f39f0c70102ux87.html
里面的第一篇:标题是:1、给定字符串查找表。
祝你成功!