使用语句直接查找。
use 数据库名
select * from syscolumns
where name = '要查找的字段名'
在查询结果中我们查找id字段的值并将其放到下边的where条件中
select * from sysobjects
where id=741577680
查询结果中name列的值就是我们要找的表名
或者使用系统函数object_name().
select object_name(741577680)
使用语句直接查找。
use 数据库名
select * from syscolumns
where name = '要查找的字段名'
在查询结果中我们查找id字段的值并将其放到下边的where条件中
select * from sysobjects
where id=741577680
查询结果中name列的值就是我们要找的表名
或者使用系统函数object_name().
select object_name(741577680)