Query String Stored Procedures

name SELECT
from the sysobjects O, S the syscomments
WHERE o.id = s.id
and text like 'to check the string%%'

and o.xtype = 'P' ORDER BY name

Guess you like

Origin www.cnblogs.com/balcon/p/11957718.html