SQL Server 中視圖通過簡單的 SELECT 查詢來解決復(fù)雜的查詢,但是視圖不能提供業(yè)務(wù)邏輯功能,而存儲過程可以辦到這點(diǎn)。
存儲過程 Procedure 是一組為了完成特定功能的 SQL 語句集合,經(jīng)編譯后存儲在數(shù)據(jù)庫中,用戶通過指定存儲過程的名稱并給出參數(shù)來執(zhí)行。
存儲過程中可以包含邏輯控制語句和數(shù)據(jù)操縱語句,它可以接受參數(shù)、輸出參數(shù)、返回單個或多個結(jié)果集以及返回值。
由于存儲過程在創(chuàng)建時即在數(shù)據(jù)庫服務(wù)器上進(jìn)行了編譯并存儲在數(shù)據(jù)庫中,所以存儲過程運(yùn)行要比單個的 SQL 語句塊要快。同時由于在調(diào)用時只需用提供存儲過程名和必要的參數(shù)信息,所以在一定程度上也可以減少網(wǎng)絡(luò)流量、網(wǎng)絡(luò)負(fù)擔(dān)。
下面是一些在使用存儲過程的主要優(yōu)點(diǎn):
我們需要使用 CREATE PROCEDURE 語句創(chuàng)建一個存儲過程,接著要補(bǔ)充存儲過程的代碼,如果存儲過程將要接受參數(shù),它們需要被包括在名稱后,如下:
CREATE PROCEDURE myStoredProcedure AS
...
OR
CREATE PROCEDURE myStoredProcedure @{Parameter Name} {data type} AS
...
下述代碼創(chuàng)建了一個被稱為 “LatestTasks” 的存儲過程。
它接受一個參數(shù)名為 @Count. 當(dāng)調(diào)用這個存儲過程,通過 @count 參數(shù),它決定你想要多少行返回。
代碼如下:
CREATE PROCEDURE LatestTasks @Count int AS
SET ROWCOUNT @Count
SELECT TaskName AS LatestTasks, DateCreated
FROM Tasks
ORDER BY DateCreated DESC
在SQL Server管理套件運(yùn)行這段代碼,會看到它被在存儲過程節(jié)點(diǎn)創(chuàng)建為 “LatestTasks”。
在SQL Server 2014,可以在存儲過程節(jié)點(diǎn)/文件夾中創(chuàng)建通過右鍵單擊一個存儲過程,選擇存儲過程....這將打開一個模板,這是隨時可以填入自己的具體程序。
常用系統(tǒng)存儲過程有:
exec sp_databases; --查看數(shù)據(jù)庫
exec sp_tables; --查看表
exec sp_columns student;--查看列
exec sp_helpIndex student;--查看索引
exec sp_helpConstraint student;--約束
exec sp_stored_procedures;
exec sp_helptext 'sp_stored_procedures';--查看存儲過程創(chuàng)建、定義語句
exec sp_rename student, stuInfo;--修改表、索引、列的名稱
exec sp_renamedb myTempDB, myDB;--更改數(shù)據(jù)庫名稱
exec sp_defaultdb 'master', 'myDB';--更改登錄名的默認(rèn)數(shù)據(jù)庫
exec sp_helpdb;--數(shù)據(jù)庫幫助,查詢數(shù)據(jù)庫信息
exec sp_helpdb master;
系統(tǒng)存儲過程示例:
--表重命名
exec sp_rename 'stu', 'stud';
select * from stud;
--列重命名
exec sp_rename 'stud.name', 'sName', 'column';
exec sp_help 'stud';
--重命名索引
exec sp_rename N'student.idx_cid', N'idx_cidd', N'index';
exec sp_help 'student';
--查詢所有存儲過程
select * from sys.objects where type = 'P';
select * from sys.objects where type_desc like '%pro%' and name like 'sp%';
1、 創(chuàng)建語法
create proc | procedure pro_name
[{@參數(shù)數(shù)據(jù)類型} [=默認(rèn)值] [output],
{@參數(shù)數(shù)據(jù)類型} [=默認(rèn)值] [output],
....
]
as
SQL_statements
2、 創(chuàng)建不帶參數(shù)存儲過程
--創(chuàng)建存儲過程
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;
--調(diào)用、執(zhí)行存儲過程
exec proc_get_student;
3、 修改存儲過程
--修改存儲過程
alter proc proc_get_student
as
select * from student;
4、 帶參存儲過程
--帶參存儲過程
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;
5、 帶通配符參數(shù)存儲過程
--帶通配符參數(shù)存儲過程
if (object_id('proc_findStudentByName', 'P') is not null)
drop proc proc_findStudentByName
go
create proc proc_findStudentByName(@name varchar(20) = '%j%', @nextName varchar(20) = '%')
as
select * from student where name like @name and name like @nextName;
go
exec proc_findStudentByName;
exec proc_findStudentByName '%o%', 't%';
6、 帶輸出參數(shù)存儲過程
if (object_id('proc_getStudentRecord', 'P') is not null)
drop proc proc_getStudentRecord
go
create proc proc_getStudentRecord(
@id int, --默認(rèn)輸入?yún)?shù)
@name varchar(20) out, --輸出參數(shù)
@age varchar(20) output--輸入輸出參數(shù)
)
as
select @name = name, @age = age from student where id = @id and sex = @age;
go
--
declare @id int,
@name varchar(20),
@temp varchar(20);
set @id = 7;
set @temp = 1;
exec proc_getStudentRecord @id, @name out, @temp output;
select @name, @temp;
print @name + '#' + @temp;
7、 不緩存存儲過程
--WITH RECOMPILE 不緩存
if (object_id('proc_temp', 'P') is not null)
drop proc proc_temp
go
create proc proc_temp
with recompile
as
select * from student;
go
exec proc_temp;
8、 加密存儲過程
--加密WITH ENCRYPTION
if (object_id('proc_temp_encryption', 'P') is not null)
drop proc proc_temp_encryption
go
create proc proc_temp_encryption
with encryption
as
select * from student;
go
exec proc_temp_encryption;
exec sp_helptext 'proc_temp';
exec sp_helptext 'proc_temp_encryption';
9、 帶游標(biāo)參數(shù)存儲過程
if (object_id('proc_cursor', 'P') is not null)
drop proc proc_cursor
go
create proc proc_cursor
@cur cursor varying output
as
set @cur = cursor forward_only static for
select id, name, age from student;
open @cur;
go
--調(diào)用
declare @exec_cur cursor;
declare @id int,
@name varchar(20),
@age int;
exec proc_cursor @cur = @exec_cur output;--調(diào)用存儲過程
fetch next from @exec_cur into @id, @name, @age;
while (@@fetch_status = 0)
begin
fetch next from @exec_cur into @id, @name, @age;
print 'id: ' + convert(varchar, @id) + ', name: ' + @name + ', age: ' + convert(char, @age);
end
close @exec_cur;
deallocate @exec_cur;--刪除游標(biāo)
10、 分頁存儲過程
---存儲過程、row_number完成分頁
if (object_id('pro_page', 'P') is not null)
drop proc proc_cursor
go
create proc pro_page
@startIndex int,
@endIndex int
as
select count(*) from product
;
select * from (
select row_number() over(order by pid) as rowId, * from product
) temp
where temp.rowId between @startIndex and @endIndex
go
drop proc pro_page
exec pro_page 1, 4
--
--分頁存儲過程
if (object_id('pro_page', 'P') is not null)
drop proc pro_stu
go
create procedure pro_stu(
@pageIndex int,
@pageSize int
)
as
declare @startRow int, @endRow int
set @startRow = (@pageIndex - 1) * @pageSize +1
set @endRow = @startRow + @pageSize -1
select * from (
select *, row_number() over (order by id asc) as number from student
) t
where t.number between @startRow and @endRow;
exec pro_stu 2, 2;
還可以使用圖形用戶界面來執(zhí)行存儲過程。
具體方法如下:
如果需要修改現(xiàn)有的存儲過程,只需更換掉 CREATE ,使用 ALTER。
我們在 “Latest” 和 “Tasks”間添加一個空格(即“Latest Tasks”),并添加描述字段,如下:
ALTER PROCEDURE LatestTasks @Count int AS
SET ROWCOUNT @Count
SELECT TaskName AS "Latest Tasks", Description, DateCreated
FROM Tasks
ORDER BY DateCreated DESC
SQL Server 包含了大量的系統(tǒng)存儲過程,以幫助數(shù)據(jù)庫管理任務(wù)。
通過 GUI 執(zhí)行的任務(wù)可以通過系統(tǒng)存儲過程來完成。
例如,有些東西可以用系統(tǒng)存儲過程的包括:
有些人前綴的存儲過程 usp_,另外其他人使用 SQL 關(guān)鍵字,如 SELECT,INSERT,UPDATE,DELETE;也有人使用的縮寫是一些下劃線(例如,latest_tasks)。
因此,我們的存儲過程可以被命名為以下任意一種,這取決于命名約定的使用。
不管選擇哪一種,都要保持一致性,這樣才會在需要使用存儲過程時顯得更加容易使用。
所以這是存儲過程覆蓋。在下一節(jié)中,我們將會了解用戶登錄。
更多建議: