Create commands for stored procedures in SQL Server

Source: Internet
Author: User

Create Proc Stored Procedure name

@ Parameter 1 parameter type,

@ Parameter 2 parameter type,

...--the last line of arguments, don't add a comma, the comma means that there are parameters behind it .

As

SQL commands to execute

GO

Cases:

A stored procedure that inserts data into the department table in the example database (which has id,name,direc,note parameters in the table):

Use Example

GO

Create Proc Pro_department_insert--Creating a stored procedure named Pro_department_insert

(--Parameter list

@ID int,

@Name varchar (30),

@Direc varchar (10),

@Note varchar--there 's no comma here.

As

Insert into department VALUES (@ID, @Name, @Direc, @Note)

GO

Create commands for stored procedures in SQL Server

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.