select name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%查詢字段%'
and o.xtype = 'P'
注釋:P--存儲過程
select name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%查詢字段%'
and o.xtype = 'P'
注釋:P--存儲過程