怎么在函数里把SQL查询结果赋值到变量

2024-12-26 15:26:33
推荐回答(1个)
回答1:

--sql server
--比如将满足条件的数据笔数赋值给变了@i
declare @i int
select @i=count(*) from tableName where ...