SQL Server存儲過程

2022-11-02 16:33 更新

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)

下面是一些在使用存儲過程的主要優(yōu)點(diǎn):

  • 存儲過程允許標(biāo)準(zhǔn)組件式編程 存儲過程創(chuàng)建后可以在程序中被多次調(diào)用執(zhí)行,而不必重新編寫該存儲過程的SQL語句。而且數(shù)據(jù)庫專業(yè)人員可以隨時對存儲過程進(jìn)行修改,但對應(yīng)用程序源代碼卻毫無影響,從而極大的提高了程序的可移植性。
  • 存儲過程能夠?qū)崿F(xiàn)較快的執(zhí)行速度 如果某一操作包含大量的T-SQL語句代碼,分別被多次執(zhí)行,那么存儲過程要比批處理的執(zhí)行速度快得多。因?yàn)榇鎯^程是預(yù)編譯的,在首次運(yùn)行一個存儲過程時,查詢優(yōu)化器對其進(jìn)行分析、優(yōu)化,并給出最終被存在系統(tǒng)表中的存儲計(jì)劃。而批處理的T-SQL語句每次運(yùn)行都需要預(yù)編譯和優(yōu)化,所以速度就要慢一些。
  • 存儲過程減輕網(wǎng)絡(luò)流量 對于同一個針對數(shù)據(jù)庫對象的操作,如果這一操作所涉及到的T-SQL語句被組織成一存儲過程,那么當(dāng)在客戶機(jī)上調(diào)用該存儲過程時,網(wǎng)絡(luò)中傳遞的只是該調(diào)用語句,否則將會是多條SQL語句。從而減輕了網(wǎng)絡(luò)流量,降低了網(wǎng)絡(luò)負(fù)載。
  • 存儲過程可被作為一種安全機(jī)制來充分利用
  • 系統(tǒng)管理員可以對執(zhí)行的某一個存儲過程進(jìn)行權(quán)限限制,從而能夠?qū)崿F(xiàn)對某些數(shù)據(jù)訪問的限制,避免非授權(quán)用戶對數(shù)據(jù)的訪問,保證數(shù)據(jù)的安全。


SQL Server 創(chuàng)建一個存儲過程

我們需要使用 CREATE PROCEDURE 語句創(chuàng)建一個存儲過程,接著要補(bǔ)充存儲過程的代碼,如果存儲過程將要接受參數(shù),它們需要被包括在名稱后,如下:

CREATE PROCEDURE myStoredProcedure AS
...

OR

CREATE PROCEDURE myStoredProcedure @{Parameter Name} {data type} AS
...

詳細(xì)示例

下述代碼創(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)建通過右鍵單擊一個存儲過程,選擇存儲過程....這將打開一個模板,這是隨時可以填入自己的具體程序。

SQL Server 執(zhí)行存儲過程

常用系統(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;


SQL Server 使用GUI

還可以使用圖形用戶界面來執(zhí)行存儲過程。

具體方法如下:

  1. 使用對象資源管理器,瀏覽到存儲過程
  2. 右鍵單擊該存儲過程并選擇 Execute Stored Procedure...:
  3. 會出現(xiàn)一個對話框。輸入您所選擇的參數(shù)值:
  4. 點(diǎn)擊 OK
  5. SQL Server 現(xiàn)在會生成 SQL 代碼并執(zhí)行存儲過程。

SQL Server 修改存儲過程

如果需要修改現(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)存儲過程

SQL Server 包含了大量的系統(tǒng)存儲過程,以幫助數(shù)據(jù)庫管理任務(wù)。

通過 GUI 執(zhí)行的任務(wù)可以通過系統(tǒng)存儲過程來完成。 

例如,有些東西可以用系統(tǒng)存儲過程的包括:

  • 配置安全帳戶
  • 建立鏈接服務(wù)器
  • 創(chuàng)建一個數(shù)據(jù)庫維護(hù)計(jì)劃
  • 創(chuàng)建全文檢索目錄
  • 添加遠(yuǎn)程登錄
  • 配置復(fù)制
  • 設(shè)置調(diào)度作業(yè)
  • 以及更多...

SQL Server 命名約定

一起來看看擴(kuò)展系統(tǒng)存儲過程節(jié)點(diǎn),我們發(fā)現(xiàn),他們的名字都以 sp_ 開始,這樣的命名表明它是一個存儲過程。 該系統(tǒng)存儲過程顯然遵循的命名約定,在存儲過程制定一個一致的命名約定是好的,但是每個人的命名習(xí)慣都有不同。

有些人前綴的存儲過程 usp_,另外其他人使用 SQL 關(guān)鍵字,如 SELECT,INSERT,UPDATE,DELETE;也有人使用的縮寫是一些下劃線(例如,latest_tasks)。

因此,我們的存儲過程可以被命名為以下任意一種,這取決于命名約定的使用。

  • LatestTasks
  • latest_tasks
  • uspLatestTasks
  • usp_latest_tasks
  • selectLatestTasks
  • select_LatestTasks
  • select_latest_tasks
  • getLatestTasks
  • get_latest_tasks

不管選擇哪一種,都要保持一致性,這樣才會在需要使用存儲過程時顯得更加容易使用。

所以這是存儲過程覆蓋。在下一節(jié)中,我們將會了解用戶登錄。


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號