SQL Server格納プロセスの基本文法

5073 ワード

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 
    
  • udate文を使用した値付け
  • 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 @sum+=@a 
        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) 
       --@msg       
       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 @sum=@a+@b 
    END
      
    --  Return        
    CREATE PROCEDURE PR_Sum2 
        @a int, 
        @b int
    AS
    BEGIN
        Return @a+@b 
    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 @a+@b 
    end
      
    --         
    create function FUNC_UserTab_1 
    ( 
        @myId int
    ) 
    returns table
    as
    return (select * from ST_User where ID
    保存プロセス
    1.テーブル変数に戻せません.制限が少なくて、データベーステーブルに対する操作を実行できます.データセット3に戻ります.一つのスカラ値を返してもいいです.また、リセットストアプロセスを省略してもいいです.複雑な機能、データ操作を実現するために一般的に使われます.