摘要: 1 table1结构如下 2 id int 3 name varchar(50) 4 5 declare @id int 6 declare @name varchar(50) 7 declare cursor1 cursor for --定义游标cursor1 8 select * from table1 --使用游标的对象(跟据需要填入select文) 9 open cursor1 --打开游标10 11 fetch next from cursor1 into @id,... 阅读全文
posted @ 2012-02-29 10:14 iewysdcwy 阅读(197) 评论(0) 推荐(0) 编辑