标签:style ar 使用 sp on bs ef as new
1、变量
(1)变量的定义:
Declare @sum int
(2)变量的赋值:
Set @sun=1
(3)变量的使用:
Print @sum
例:
Declare @sum varchar(20)
Set @sun=‘abcdef’
Print @sum
2、全局变量(系统函数)
(1)@@error
返回上一次出现的错误的代号(是int型的)
(2)@@rowcount
返回受上次影响的行数
例:
求圆的面积?
Declare @pi decimal(18,2), @r decimal(18,2),@s decimal(18,2)
Set @pi=3.14
Set @r=2
Set @s=@pi*@r*@r
Print @s
3、if语句
判断一个数?
Declare @a int
Set @a=2
If @a>0
Begin
Print ‘这是一个大于0的数’
End
Else if @a=0
Begin
Print ‘这个数为0’
End
Else
Begin
Print ‘这是一个小于0的数’
End
判断闰年?
declare @y int
set @y=2200
if (@y%100=0 and @y%400=0) or(@y%100<>0 and @y%4=0)
begin
print ‘是闰年‘
end
else
begin
print ‘不是闰年‘
end
标签:style ar 使用 sp on bs ef as new
原文地址:http://www.cnblogs.com/XMH1217423419/p/4133161.html