USE master;
SELECT name ,
text
FROM sysobjects o ,
syscomments s
WHERE o.id = s.id
AND text LIKE '%参考价格%'
AND (o.xtype = 'P' OR o.xtype='PC');
USE master;
SELECT name ,
text
FROM sysobjects o ,
syscomments s
WHERE o.id = s.id
AND text LIKE '%参考价格%'
AND (o.xtype = 'P' OR o.xtype='PC');
本文标题:查询存储过程包含某个内容
本文链接:https://www.haomeiwen.com/subject/sczslctx.html
网友评论