存储过程:
优势:1.较快执行速度(比单个的SQL语句快)
2.调用时只需存储过程名和参数
分类:1.系统存储过程:
1.系统创建,有一些存储过程会在创建新的数据库时自动创建;
2.名字以“sp_”开头
2.自定义存储过程:
create proc | procedure pro_name
[{@参数数据类型} [=默认值] 服务器托管网[output],
{@参数数据类型} [=默认值] [output],
....
]
as
SQL_statements
具体用法示例:
1.创建不带参数存储过程:
--创建存储过程
if (exists (select * from sys.objects where name = 'proc_get_student'))
drop proc proc_get_student
go
create proc proc_get_student
as
select * from student;
--调用、执行存储过程
exec proc_get_student;
2.创建带参存储过程:
--带参存储过程
if (object_id('proc_find_stu', 'P') is not服务器托管网 null)
drop proc proc_find_stu
go
create proc proc_find_stu(@startId int, @endId int)
as
select * from student where id between @startId and @endId
go
exec proc_find_stu 2, 4;
3.修改存储过程:
--修改存储过程
alter proc proc_get_student
as
select * from student;
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
给你一个整数数组nums,有一个大小为k的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的k个数字。滑动窗口每次只向右移动一位。 返回滑动窗口中的最大值。 示例 1: 输入:nums = [1,3,-1,-3,5,3,6,7], k = 3…