标签:ar 使用 sp strong on 数据 2014 bs ef
一、定义变量
declare @sum int --变量名以@开头,后面接数据类型
二、变量赋值
set @sum=1
三、变量使用
print @sum --不能单独执行次命令,需要与上两个变量配合
例:declare @string varchar(20)
set @string=‘abcdefg‘
set @string=substring(@string,3,1)
print @sting
四、全局变量(系统函数)
@@error --存储上一个语句的错误号,若没有错误,返回0。
@@Rowcount --返回受上一句影响的行数
例:--判断是不是闰年
declare @year int
set @year=2200
if @year%4=0 and @year%100<>0
begin
print ‘此年为闰年‘
end
else if @year%400=0
begin
print ‘此年为闰年‘
end
else
begin
print ‘此年为平年‘
end
else if 可以写很多个,最后以else结尾
标签:ar 使用 sp strong on 数据 2014 bs ef
原文地址:http://www.cnblogs.com/jintuo/p/4133423.html