Create procedure Grammar

Source: Internet
Author: User

Create procedure pre_name
@ Variable list
as
pro_doby

eg. create procedure sp_getuserinformation
@ userid char (15) = '000000',
@ username char (2) output, // which means username is outout
@ address char (40) outout,
@ email char (30)
as
select userid, @ username = username, @ address = address, @ email = email
from t_userinfo
where userid = @ userid
// statements: if the parameter has default value when creating procedure, then when we call the procedure, we can igonore the parameters which makes no error.
eg. creat procedure sp_test
userid varchar (10) = '000000'
as
select * From t_username
where userid = @ userid;
go
when we call the procedure, we can write this:
à SP _ test (the default value of parameter userid is 982135, so we can ignore it)
or à SP _ test '000000'

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.