sql 查询结果存储到变量 20

select*fromtable1wherenumber>17我想把这个查询结果存储到变量里,怎么弄?... select * from table1 where number >17 我想把这个查询结果存储到变量里,怎么弄? 展开
 我来答
百度网友752c4d2
2012-08-01 · TA获得超过219个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:157万
展开全部
declare @tablename table(c1 vchar(10),c2 vchar(100)...)
insert into @tablename select *from table1 where number>17
select * from @tablename
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友8ac6d36fb
2012-08-01 · TA获得超过621个赞
知道小有建树答主
回答量:298
采纳率:0%
帮助的人:184万
展开全部
多记录结果怎么给变量。

select top 1 @var =colname from table1 where number >17
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
c6iz
2012-08-01 · TA获得超过1417个赞
知道大有可为答主
回答量:1426
采纳率:100%
帮助的人:1038万
展开全部
select * into #t from table1 where number >17
select * from #t
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lxr_303
2012-08-01 · TA获得超过473个赞
知道小有建树答主
回答量:875
采纳率:0%
帮助的人:513万
展开全部
写存过过程啊:
create or replace procedure v_proc as
declare v_recorde table1%rowtype;

declare v_cursor curso for select * from table1 where number >17;

begin
open v_cursor;
loop
fetch v_cursor into v_recorde;
exit when v_cursor%notfound;
end loop;
end
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式