SQL中将查询结果赋值给变量
Posted 楚弋川
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL中将查询结果赋值给变量相关的知识,希望对你有一定的参考价值。
将数字赋值给变量
declare @count int
select @count=COUNT(*) from Permission.Menu
将字符/Guid串赋给变量
declare @menuId uniqueidentifier
select @menuId=Id from (select row_number()over(order by Id)as row,Id from Permission.Menu)as List where row =@num
以上是关于SQL中将查询结果赋值给变量的主要内容,如果未能解决你的问题,请参考以下文章