SQL Server 中視圖通過(guò)簡(jiǎn)單的 SELECT 查詢來(lái)解決復(fù)雜的查詢,但是視圖不能提供業(yè)務(wù)邏輯功能,而存儲(chǔ)過(guò)程可以辦到這點(diǎn)。
存儲(chǔ)過(guò)程 Procedure 是一組為了完成特定功能的 SQL 語(yǔ)句集合,經(jīng)編譯后存儲(chǔ)在數(shù)據(jù)庫(kù)中,用戶通過(guò)指定存儲(chǔ)過(guò)程的名稱并給出參數(shù)來(lái)執(zhí)行。
存儲(chǔ)過(guò)程中可以包含邏輯控制語(yǔ)句和數(shù)據(jù)操縱語(yǔ)句,它可以接受參數(shù)、輸出參數(shù)、返回單個(gè)或多個(gè)結(jié)果集以及返回值。
由于存儲(chǔ)過(guò)程在創(chuàng)建時(shí)即在數(shù)據(jù)庫(kù)服務(wù)器上進(jìn)行了編譯并存儲(chǔ)在數(shù)據(jù)庫(kù)中,所以存儲(chǔ)過(guò)程運(yùn)行要比單個(gè)的 SQL 語(yǔ)句塊要快。同時(shí)由于在調(diào)用時(shí)只需用提供存儲(chǔ)過(guò)程名和必要的參數(shù)信息,所以在一定程度上也可以減少網(wǎng)絡(luò)流量、網(wǎng)絡(luò)負(fù)擔(dān)。
下面是一些在使用存儲(chǔ)過(guò)程的主要優(yōu)點(diǎn):
我們需要使用 CREATE PROCEDURE 語(yǔ)句創(chuàng)建一個(gè)存儲(chǔ)過(guò)程,接著要補(bǔ)充存儲(chǔ)過(guò)程的代碼,如果存儲(chǔ)過(guò)程將要接受參數(shù),它們需要被包括在名稱后,如下:
CREATE PROCEDURE myStoredProcedure AS
...
OR
CREATE PROCEDURE myStoredProcedure @{Parameter Name} {data type} AS
...
下述代碼創(chuàng)建了一個(gè)被稱為 “LatestTasks” 的存儲(chǔ)過(guò)程。
它接受一個(gè)參數(shù)名為 @Count. 當(dāng)調(diào)用這個(gè)存儲(chǔ)過(guò)程,通過(guò) @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)行這段代碼,會(huì)看到它被在存儲(chǔ)過(guò)程節(jié)點(diǎn)創(chuàng)建為 “LatestTasks”。
在SQL Server 2014,可以在存儲(chǔ)過(guò)程節(jié)點(diǎn)/文件夾中創(chuàng)建通過(guò)右鍵單擊一個(gè)存儲(chǔ)過(guò)程,選擇存儲(chǔ)過(guò)程....這將打開(kāi)一個(gè)模板,這是隨時(shí)可以填入自己的具體程序。
常用系統(tǒng)存儲(chǔ)過(guò)程有:
exec sp_databases; --查看數(shù)據(jù)庫(kù)
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';--查看存儲(chǔ)過(guò)程創(chuàng)建、定義語(yǔ)句
exec sp_rename student, stuInfo;--修改表、索引、列的名稱
exec sp_renamedb myTempDB, myDB;--更改數(shù)據(jù)庫(kù)名稱
exec sp_defaultdb 'master', 'myDB';--更改登錄名的默認(rèn)數(shù)據(jù)庫(kù)
exec sp_helpdb;--數(shù)據(jù)庫(kù)幫助,查詢數(shù)據(jù)庫(kù)信息
exec sp_helpdb master;
系統(tǒng)存儲(chǔ)過(guò)程示例:
--表重命名
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';
--查詢所有存儲(chǔ)過(guò)程
select * from sys.objects where type = 'P';
select * from sys.objects where type_desc like '%pro%' and name like 'sp%';
1、 創(chuàng)建語(yǔ)法
create proc | procedure pro_name
[{@參數(shù)數(shù)據(jù)類型} [=默認(rèn)值] [output],
{@參數(shù)數(shù)據(jù)類型} [=默認(rèn)值] [output],
....
]
as
SQL_statements
2、 創(chuàng)建不帶參數(shù)存儲(chǔ)過(guò)程
--創(chuàng)建存儲(chǔ)過(guò)程
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í)行存儲(chǔ)過(guò)程
exec proc_get_student;
3、 修改存儲(chǔ)過(guò)程
--修改存儲(chǔ)過(guò)程
alter proc proc_get_student
as
select * from student;
4、 帶參存儲(chǔ)過(guò)程
--帶參存儲(chǔ)過(guò)程
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ù)存儲(chǔ)過(guò)程
--帶通配符參數(shù)存儲(chǔ)過(guò)程
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ù)存儲(chǔ)過(guò)程
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、 不緩存存儲(chǔ)過(guò)程
--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、 加密存儲(chǔ)過(guò)程
--加密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ù)存儲(chǔ)過(guò)程
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)用存儲(chǔ)過(guò)程
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、 分頁(yè)存儲(chǔ)過(guò)程
---存儲(chǔ)過(guò)程、row_number完成分頁(yè)
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
--
--分頁(yè)存儲(chǔ)過(guò)程
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;
還可以使用圖形用戶界面來(lái)執(zhí)行存儲(chǔ)過(guò)程。
具體方法如下:
如果需要修改現(xiàn)有的存儲(chǔ)過(guò)程,只需更換掉 CREATE ,使用 ALTER。
我們?cè)?“Latest” 和 “Tasks”間添加一個(gè)空格(即“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)存儲(chǔ)過(guò)程,以幫助數(shù)據(jù)庫(kù)管理任務(wù)。
通過(guò) GUI 執(zhí)行的任務(wù)可以通過(guò)系統(tǒng)存儲(chǔ)過(guò)程來(lái)完成。
例如,有些東西可以用系統(tǒng)存儲(chǔ)過(guò)程的包括:
有些人前綴的存儲(chǔ)過(guò)程 usp_,另外其他人使用 SQL 關(guān)鍵字,如 SELECT,INSERT,UPDATE,DELETE;也有人使用的縮寫是一些下劃線(例如,latest_tasks)。
因此,我們的存儲(chǔ)過(guò)程可以被命名為以下任意一種,這取決于命名約定的使用。
不管選擇哪一種,都要保持一致性,這樣才會(huì)在需要使用存儲(chǔ)過(guò)程時(shí)顯得更加容易使用。
所以這是存儲(chǔ)過(guò)程覆蓋。在下一節(jié)中,我們將會(huì)了解用戶登錄。
更多建議: