sqlserver查询某个字段在哪些表中存在
程序员文章站
2024-01-04 15:19:16
...
欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入 --含有医院编号字段的所有表 select a.[name] from sysobjects a, ( select [id],count(*) b from syscolumns where [name] ='column1' group by [id] ) b where a.[id]=b.[id] order by a.nam
欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入
--含有医院编号字段的所有表
select a.[name] from sysobjects a,
(
select [id],count(*) b from syscolumns
where [name] ='column1'
group by [id]
)
b where a.[id]=b.[id] order by a.name asc
--同时含有医院编号和科室编号字段的所有表
select a.[name] from sysobjects a
left join
(
select [id],count(*) b from syscolumns where [name]
in('column1','column2') group by [id] having count(*)>1
) b
on a.[id]=b.[id]
where b.id is not null
推荐阅读
-
sqlserver查询某个字段在哪些表中存在
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
sql 查询 一张表里面的数据 在另一张表中是否存在 和 比对两个集合中的差集和交集(原创)
-
SQLSERVER查询整个数据库中某个特定值所在的表和字段的方法
-
只有两个字段用一个sql语句查询出某个学生的姓名、成绩以及在表中的排名
-
SQLserver、MySQL、ORCAL查询数据库、表、表中字段以及字段类型
-
查询SQLServer2005中某个数据库中的表结构、索引、视图、存储过
-
sqlserver查询某个字段在哪些表中存在
-
查询SQLServer2005中某个数据库中的表结构、索引、视图、存储过