--查询什么存储过程和视图用到了这个字段
select distinct b.name from syscomments a,sysobjects b where a.id=b.id and a.text LIKE ‘%xxx%‘
--查询一个表有什么字段
select name from SysColumns where id=Object_Id(‘表名‘)
原文地址:https://www.cnblogs.com/eatyourvegetables/p/10637296.html
时间: 2024-10-20 05:36:03