sql:根据字段查询表名

时间:2021-01-27 09:26:41

使用语句直接查找。
use 数据库名
select * from syscolumns 
where name = '要查找的字段名'
在查询结果中我们查找id字段的值并将其放到下边的where条件中

select * from sysobjects
where id=741577680
查询结果中name列的值就是我们要找的表名

或者使用系统函数object_name().
select object_name(741577680)

收藏于 2009-06-26来自于百度空间