使用IEnumerable接口遍历数据,这在项目中会经常的用到,这个类型呢主要是一个枚举器. 1.首先需要让该类型实现一个名字叫IEnumerable的接口,实现该接口的主要目的是为了让当前类型中增加一个名字叫GetEnumerator()的方法. public class Person : IEnumerable { private string[] Friends = new string[] { "张三", "李四", "王五", &quo
方法一:使用游标(此方法适用所有情况,对标结构没有特殊要求.) declare @ProductName nvarchar() declare pcurr cursor for select ProductName from Products open pcurr fetch next from pcurr into @ProductName ) begin print (@ProductName) fetch next from pcurr into @ProductName end clos
--------------------------------------例子1 单纯的游标-------------------------------- create TABLE Table1 ( a ), b ), c ), CONSTRAINT [PK_Table1] PRIMARY KEY CLUSTERED ( a ASC ) ) ON [PRIMARY] create TABLE Table2 ( a ), c ), CONSTRAINT [PK_Table2] PRIMARY