T-SQL编程
Posted lfylcj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了T-SQL编程相关的知识,希望对你有一定的参考价值。
一:变量的分类:
1局部变量(过程中使用)
a)局部变量标记语法:@StuName。
b)先声明,后赋值使用(声明用declare)
DECLARE @变量名 数据类型
eg;declare @studentName varchar(10),@studentId int
eg:赋值方法
SET @变量名 =值或SELECT @变量名=值
[email protected]=‘张三‘
select StuId,StuName from Stus where [email protected]
select @StuId=studentId from Stus where [email protected]
--查询临近元素
select StuId,StuName from Stus where StuAddr=(@StuId+1)or StuId=(@studengId+1)
2全局变量(随时可用)
a)全局变量标记语法:@@StuName。
b)可读取,不可修改其值。
以上是关于T-SQL编程的主要内容,如果未能解决你的问题,请参考以下文章