在数据库SQL Server 2005/2008中,查询包含某关键字的存储过程语句:
摘要:
select distinctb.namefrom dbo.syscomments a, dbo.sysobjects bwhere a.id=b.id and b.xtype='p' and a.text like '%text%'order by name 阅读全文
posted @ 2012-04-25 18:26 nick轩 阅读(352) 评论(0) 推荐(0) 编辑