发布网友 发布时间:2022-04-10 21:51
共3个回答
懂视网 时间:2022-04-11 02:12
数据库查询哪个对像里面包含什么字段
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
热心网友 时间:2022-04-10 23:20
如果是mysql,终端连接上mysql数据库
use 数据库名
desc 表名
如果是其他数据库,用数据库管理工具客户端就很容易查看
热心网友 时间:2022-04-11 00:38
select name,OBJECT_NAME(id) as tablename from syscolumns where name='fa'