最近SQL Server用的多,有时候需要查一下某个字段在哪张表里,网上找了一些sql,我自己也备份一下
select a.name 表名,b.name 列名
from sys.objects a,sys.columns b
where object_name(b.object_id)=a.name
and b.name='CustCode' --CustCode 为列名
and type='u
亲测,能用,好使
最近SQL Server用的多,有时候需要查一下某个字段在哪张表里,网上找了一些sql,我自己也备份一下
select a.name 表名,b.name 列名
from sys.objects a,sys.columns b
where object_name(b.object_id)=a.name
and b.name='CustCode' --CustCode 为列名
and type='u
亲测,能用,好使