Redian新闻
>
can I create a recordset with cursor?
avatar
can I create a recordset with cursor?# Database - 数据库
S*s
1
what I want to is like this:
declare @acc int,@id int,@count int
decalre my_cursor cursor for
select id, count from sometable
set @acc=0
open my_cursor
fetch next from my_cursor
into @id,@count
while @@fetch_status=0
begin
@[email protected][email protected]
-- i want to insert a new raw to the recordest returned, but how?
insert_to_recorset @id,@acc
fetch next from my_cursor
into @id,@count
end
close my_cursor
deallocate my_cursor
avatar
a*i
2
use trigger.

【在 S*******s 的大作中提到】
: what I want to is like this:
: declare @acc int,@id int,@count int
: decalre my_cursor cursor for
: select id, count from sometable
: set @acc=0
: open my_cursor
: fetch next from my_cursor
: into @id,@count
: while @@fetch_status=0
: begin

avatar
S*s
3
trigger? i can't understand. can you specify more?

【在 a*****i 的大作中提到】
: use trigger.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。