select a.name 表名
  from sysobjects a,syscolumns b
  where a.id=b.id and OBJECTPROPERTY(a.id, N'IsUserTable') = 1 and b.name='你的列名'