沃梦达 / 编程技术 / 数据库 / 正文

数据库查询某个对像里面包含哪些字段方法的sql语句

数据库查询某个对像里面包含哪些字段方法的sql语句写法: select *from sysobjects o, syscomments swhere o.id = s.idand text like '%text%'and o.xtype = 'P' text 换成需要查的字段 数据库查询哪个对像里面包含表:

数据库查询某个对像里面包含哪些字段方法的sql语句写法:
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
select o.name from sys.all_sql_modules s,sysobjects o where definition like '%表名%' and o.id = s.object_id
表名换成需要查的表名

本文标题为:数据库查询某个对像里面包含哪些字段方法的sql语句

基础教程推荐