如何将从SQL语句读取的数据赋值给一个变量

日期:2017-01-17 11:28:09 人气:1

如何将从SQL语句读取的数据赋值给一个变量

select @a=a,@b=b from table declare @a money,@b money,@c money set @a=(select top 1 金额 from 表 where 条件) set @b=(select top 1 金额 from 表 where 条件) set @c=@a+@b select @c
    A+
热门评论