如何查询包含某列的所有表? 2022-08-26 DB DB 评论 包含某列的所有表 1234--包含某列的所有表select a.[name] 表名 from sysobjects a,(select [id],count(*) b from syscolumns where [name] ='cxxbj' group by [id])b where a.[id]=b.[id]