1. 程式人生 > >sql儲存過程基礎語法

sql儲存過程基礎語法

 

MySQL 5.0 版本開始支援儲存過程。

儲存過程(Stored Procedure)是一種在資料庫中儲存複雜程式,以便外部程式呼叫的一種資料庫物件

儲存過程是為了完成特定功能的SQL語句集,經編譯建立並儲存在資料庫中,使用者可通過指定儲存過程的名字並給定引數(需要時)來呼叫執行。

儲存過程思想上很簡單,就是資料庫 SQL 語言層面的程式碼封裝與重用

 

優點

  • 儲存過程可封裝,並隱藏複雜的商業邏輯。
  • 儲存過程可以回傳值,並可以接受引數。
  • 儲存過程無法使用 SELECT 指令來執行,因為它是子程式,與查看錶,資料表或使用者定義函式不同。
  • 儲存過程可以用在資料檢驗,強制實行商業邏輯等。

缺點

  • 儲存過程,往往定製化於特定的資料庫上,因為支援的程式語言不同。當切換到其他廠商的資料庫系統時,需要重寫原有的儲存過程。
  • 儲存過程的效能調校與撰寫,受限於各種資料庫系統。

//轉載自http://www.runoob.com/w3cnote/mysql-stored-procedure.html

1. 定義變數

  • 簡單賦值
declare @a int
set @a=5 
print @a 
  • 使用select語句賦值
declare @user1 nvarchar(50) 
select @user1='張三'
print @user1 
declare @user2 nvarchar(50) 
select @user2 = Name from ST_User where ID=1 
print @user2 
  • 使用update語句賦值
declare @user3 nvarchar(50) 
update ST_User set @user3 = Name where ID=1 
print @user3

2、表、臨時表、表變數

  • 建立臨時表1
create table #DU_User1 
( 
     [ID] [int]  NOT NULL, 
     [Oid] [int] NOT NULL, 
     [Login] [nvarchar](50) NOT NULL, 
     [Rtx] [nvarchar](4) NOT NULL, 
     [Name] [nvarchar](5) NOT NULL, 
     [Password] [nvarchar](max) NULL, 
     [State] [nvarchar](8) NOT NULL
); 
  • 向臨時表1插入一條記錄
insert into #DU_User1 (ID,Oid,[Login],Rtx,Name,[Password],State) values (100,2,'LS','0000','臨時','321','特殊'); 
  • 從ST_User查詢資料,填充至新生成的臨時表
select * into #DU_User2 from ST_User where ID<8 
  • 查詢並聯合兩臨時表
select * from #DU_User2 where ID<3 union select * from #DU_User1 
  • 刪除兩臨時表
drop table #DU_User1 
drop table #DU_User2
  • 建立臨時表
CREATE TABLE #t 
( 
    [ID] [int] NOT NULL, 
    [Oid] [int] NOT NULL, 
    [Login] [nvarchar](50) NOT NULL, 
    [Rtx] [nvarchar](4) NOT NULL, 
    [Name] [nvarchar](5) NOT NULL, 
    [Password] [nvarchar](max) NULL, 
    [State] [nvarchar](8) NOT NULL, 
) 
  • 將查詢結果集(多條資料)插入臨時表
insert into #t select * from ST_User 
  • 不能這樣插入
select * into #t from dbo.ST_User 
  • 新增一列,為int型自增長子段
alter table #t add [myid] int NOT NULL IDENTITY(1,1)
  • 新增一列,預設填充全球唯一標識
alter table #t add [myid1] uniqueidentifier NOT NULL default(newid()) 
select * from #t 
drop table #t
  • 給查詢結果集增加自增長列

  • 無主鍵時:

select IDENTITY(int,1,1)as ID, Name,[Login],[Password] into #t from ST_User 
select * from #t 
  • 有主鍵時:
select (select SUM(1) from ST_User where ID<= a.ID) as myID,* from ST_User a order by myID
  • 定義表變數
declare @t table
( 
    id int not null, 
    msg nvarchar(50) null
) 
insert into @t values(1,'1') 
insert into @t values(2,'2') 
select * from @t

3、迴圈

-- while迴圈計算1到100的和 
declare @a int
declare @sum int
set @a=1 
set @sum=0 
while @a<=100 
begin
    set @[email protected] 
    set @a+=1 
end
print @sum

4、條件語句

  • if,else條件分支
if(1+1=2) 
begin
    print '對'
end
else
begin
    print '錯'
end
  • when then條件分支
declare @today int
declare @week nvarchar(3) 
set @today=3 
set @week=case
    when @today=1 then '星期一'
    when @today=2 then '星期二'
    when @today=3 then '星期三'
    when @today=4 then '星期四'
    when @today=5 then '星期五'
    when @today=6 then '星期六'
    when @today=7 then '星期日'
    else '值錯誤'
end
print @week

5、遊標

declare @ID int
declare @Oid int
declare @Login varchar(50) 
-- 定義一個遊標 
declare user_cur cursor for select ID,Oid,[Login] from ST_User 
-- 開啟遊標 
open user_cur 
while @@fetch_status=0 
begin
--讀取遊標 
    fetch next from user_cur into @ID,@Oid,@Login 
    print @ID 
    --print @Login 
end
close user_cur 
--摧毀遊標 
deallocate user_cur

6、觸發器

  --觸發器中的臨時表:
  Inserted 
  存放進行insert和update 操作後的資料 
  Deleted 
  存放進行delete 和update操作前的資料
--建立觸發器 
Create trigger User_OnUpdate  
   On ST_User  
   for Update 
As 
   declare @msg nvarchar(50) 
   [email protected]記錄修改情況 
   select @msg = N'姓名從“' + Deleted.Name + N'”修改為“' + Inserted.Name + '”' from Inserted,Deleted 
   --插入日誌表 
   insert into [LOG](MSG)values(@msg) 
   --刪除觸發器 
   drop trigger User_OnUpdate

7、儲存過程

--建立帶output引數的儲存過程 
CREATE PROCEDURE PR_Sum 
    @a int, 
    @b int, 
    @sum int output
AS
BEGIN
    set @[email protected][email protected] 
END
  
--建立Return返回值儲存過程 
CREATE PROCEDURE PR_Sum2 
    @a int, 
    @b int
AS
BEGIN
    Return @[email protected] 
END
      
--執行儲存過程獲取output型返回值 
declare @mysum int
execute PR_Sum 1,2,@mysum output
print @mysum 
  
--執行儲存過程獲取Return型返回值 
declare @mysum2 int
execute @mysum2= PR_Sum2 1,2 
print @mysum2

8、自定義函式

  函式的分類:

    1)標量值函式

    2)表值函式

        a:內聯表值函式

        b:多語句表值函式

    3)系統函式

  

--新建標量值函式 
create function FUNC_Sum1 
( 
    @a int, 
    @b int
) 
returns int
as
begin
    return @[email protected] 
end
  
--新建內聯表值函式 
create function FUNC_UserTab_1 
( 
    @myId int
) 
returns table
as
return (select * from ST_User where ID<@myId) 
  
--新建多語句表值函式 
create function FUNC_UserTab_2 
( 
    @myId int
) 
returns @t table
( 
    [ID] [int] NOT NULL, 
    [Oid] [int] NOT NULL, 
    [Login] [nvarchar](50) NOT NULL, 
    [Rtx] [nvarchar](4) NOT NULL, 
    [Name] [nvarchar](5) NOT NULL, 
    [Password] [nvarchar](max) NULL, 
    [State] [nvarchar](8) NOT NULL
) 
as
begin
    insert into @t select * from ST_User where ID<@myId 
    return
end
  
--呼叫表值函式 
select * from dbo.FUNC_UserTab_1(15) 
--呼叫標量值函式 
declare @s int
set @s=dbo.FUNC_Sum1(100,50) 
print @s 
  
--刪除標量值函式 
drop function FUNC_Sum1
談談自定義函式與儲存過程的區別:

一、自定義函式:

  1. 可以返回表變數

  2. 限制頗多,包括

    不能使用output引數;

    不能用臨時表;

    函式內部的操作不能影響到外部環境;

    不能通過select返回結果集;

    不能update,delete,資料庫表;

  3. 必須return 一個標量值或表變數

  自定義函式一般用在複用度高,功能簡單單一,爭對性強的地方。

儲存過程

1. 不能返回表變數
  2. 限制少,可以執行對資料庫表的操作,可以返回資料集
  3. 可以return一個標量值,也可以省略return
   儲存過程一般用在實現複雜的功能,資料操縱方面。



作者:郎中_大成
連結:https://www.jianshu.com/p/2e94db33e8a3
來源:簡書