码迷,mamicode.com
首页 > 其他好文 > 详细

变量的定义、赋值、使用,全局变量,if语句

时间:2014-11-30 16:48:27      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   ar   使用   sp   on   bs   ef   as   new   

1、变量

1)变量的定义:

Declare  @sum  int

2)变量的赋值:

Set  @sun=1

3)变量的使用:

Print  @sum

例:

Declare  @sum  varchar20

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

变量的定义、赋值、使用,全局变量,if语句

标签:style   ar   使用   sp   on   bs   ef   as   new   

原文地址:http://www.cnblogs.com/XMH1217423419/p/4133161.html

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