标签: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 =存储过程名
标签:select create 调用 sel end 函数 style 输入 bsp
原文地址:http://www.cnblogs.com/skyhorseyk/p/7079003.html