sqlserver預存程序

來源:互聯網
上載者:User

標籤:strong   ar   sp   on   c   sql   har   as   bs   

1, 預存程序------無參預存程序

---建立無參預存程序

create proc test1
as
begin
select * from info
end

---執行預存程序

exec test1

---移除預存程序

drop proc test1

 

2, 預存程序------帶入參

---建立帶入參預存程序

create proc test3
(
@id int --入參(預設是輸入型參數)
)
as
begin
select * from info where [email protected]
end

 

-----執行帶參數的預存程序

   --a:exec test3 1

   --b: exec test3 @id=1

 

3, 預存程序(Procedure)-帶入參和出參

---建立帶入參出 參預存程序

create proc test2
(
@id int,--入參
@name varchar(20) out,--出參
@age int out--出參【出參標識output】
)
as
begin
select @name=name,@age=age from info where [email protected] --出參的@在=的左邊
end

--聲明變數

declare @name1 varchar(20),@age1 int;

--調用
exec test2 1,@name1 out,@age1 out

--查詢出聲明的變數
select ‘姓名‘[email protected],‘年齡‘[email protected]  ---指定name1的列名為姓名,age1的列名為年齡

 

sqlserver預存程序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.