TSQL BASIC Programming

Source: Internet
Author: User

TSQL BASIC Programming:

Define variable: declore @ variable name data type

Assignment: SET @ variable name = value SELECT @ Variable name = value

Retrieve print: SELECT @ variable name print @ variable name

Branching statement: If @a>@b

Begin

................

End

Loop statement: Initial conditions, cyclic condition, loop body, state change

declare @a int; Initial

Select @a = 1

While loop condition @a <=10

Begin

............. Loop body

End

Stored procedures: Equivalent to functions, four elements: input, output, function name, function body

Create

create proc Stored procedure name

@b int

As

function body

return value

Call: Exec stored procedure name

EXEC @a = stored procedure name

           

TSQL BASIC Programming

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.