码迷,mamicode.com
首页 > 数据库 > 详细

TSQL基本编程

时间:2017-06-26 10:35:14      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:select   create   调用   sel   end   函数   style   输入   bsp   

tsql基本编程:

定义变量: declore @变量名 数据类型

赋值:set @变量名 = 值                           select @变量名 = 值

 取回打印:   select @变量名               print @变量名

分支语句:if @a>@b

    begin

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

    end

循环语句:初始条件,循环条件,循环体,状态改变

declare @a int;            初始条件  

select @a = 1     

while 循环条件   @a  <=10

begin

.............    循环体

end

存储过程:相当于函数,四要素 :输入,输出 ,函数名,函数体  

创建

create proc 存储过程名

@b int

as

函数体

return 值

调用:exec   存储过程名

exec @a =存储过程名

           

TSQL基本编程

标签:select   create   调用   sel   end   函数   style   输入   bsp   

原文地址:http://www.cnblogs.com/skyhorseyk/p/7079003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!