码迷,mamicode.com
首页 > 数据库 > 详细

数据库查询哪个对像里面包含什么字段

时间:2019-08-08 11:46:23      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:object   数据库   nbsp   _id   cts   sql_mod   comm   comment   def   

数据库查询哪个对像里面包含什么字段

select *
from sysobjects o, syscomments s
where o.id = s.id
and text like ‘%text%‘
and o.xtype = ‘P‘

text换成需要查的字段

 

数据库查询哪个对像里面包含表
select o.name from sys.all_sql_modules s,sysobjects o where definition like ‘%表名%‘ and o.id = s.object_id

表名换成需要查的表名

数据库查询哪个对像里面包含什么字段

标签:object   数据库   nbsp   _id   cts   sql_mod   comm   comment   def   

原文地址:https://www.cnblogs.com/chenqingbin/p/11320144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!