Skip to content

sql server 查询存储过程指令

曾璐 edited this page Dec 25, 2016 · 3 revisions

Sp_helptext PROCEDUREName

例子

创建存储过程

CREATE PROCEDURE SelectFromBitTable
AS
BEGIN
	select pkid,isdelete from BitTable
END

查询该存储过程

sp_helptext SelectFromBitTable
Clone this wiki locally