sqlserver存储过程及java调用.pdf
文本预览下载声明
存储过程入门
例1.--创建一个返回结果集的存储过程prSearchcontentshow
create procedure prSearchcontentshow
AS
begin
select * from contentshow
end
--执行prSearchcontentshow
execute prSearchcontentshow
例2.--创建一个要求输入一个输入参数的存储过程seachConShow
create procedure sea
显示全部