摘要: declare @id numeric(18,0) DECLARE ResultSet_News CURSOR FOR SELECT Id FROM product_ta_product; OPEN ResultSet_News; FETCH NEXT FROM ResultSet_News into @Id WHILE @@FETCH_STATUS = 0 BEGIN print @... 阅读全文
posted @ 2006-07-31 11:35 Benny Ng 阅读(605) 评论(0) 推荐(0)