数据库查询哪个对像里面包含什么字段方法语句
来源:动视网
责编:小采
时间:2020-11-09 21:12:20
数据库查询哪个对像里面包含什么字段方法语句
数据库查询哪个对像里面包含什么字段方法语句:数据库查询哪个对像里面包含什么字段语句写法: select * from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' text换成需要查的字段 数据库查询哪个对像里面包含表 select o.na
导读数据库查询哪个对像里面包含什么字段方法语句:数据库查询哪个对像里面包含什么字段语句写法: select * from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' text换成需要查的字段 数据库查询哪个对像里面包含表 select o.na

数据库查询哪个对像里面包含什么字段语句写法:
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
表名换成需要查的表名
您可能感兴趣的文章:
在oracle 数据库查询的select 查询字段中关联其他表的方法
数据库查询哪个对像里面包含什么字段方法语句
数据库查询哪个对像里面包含什么字段方法语句:数据库查询哪个对像里面包含什么字段语句写法: select * from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' text换成需要查的字段 数据库查询哪个对像里面包含表 select o.na