SQL Server Stored Procedure example

Source: Internet
Author: User
Tags sql server stored procedure example stored procedure example

Small, with parameters

if (exists (SELECT * from sys.objects where name = ' proc_get_purchasing2 '))

drop proc Proc_get_student

Go

ALTER proc PROC_GET_PURCHASING2 (@today int)

As

--declare @today int

Declaration variables

declare @weeks nvarchar (3)

Set Variable value set @weeks

Set @weeks =case

when @today = 1 Then ' Monday '

When @today = 2 Then ' Tuesday '

Else ' ERROR '

End

Print @weeks

EXEC proc_get_purchasing2 @today =2



With loops

if (exists (SELECT * from sys.objects where name = ' Proc_get_purchasing3 '))

drop proc Proc_get_purchasing3

Go

Create proc Proc_get_purchasing3

As

DECLARE @sum1 int

Set @sum1 =1

While @sum1 <10

Begin

Set @sum1 [Email protected]+1

End


EXEC proc_get_purchasing3



SQL Server Stored Procedure example

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.