首先你要知道如何将整张表读取出来,ADO.NET的知识,看一段代码:
string strSQL="SELECT * FROM TableName";
string connStr="连接字符串";
SqlConnection conn=new SqlConnection(connStr);
SqlCommand comm=new SqlCommand(strSQL,conn);
conn.Open();
SqlDataReader dr=comm.ExecuteReader();
// 读取记录
while(dr.Read())
{
int getID=dr["ID"].ToString();
}
dr.Close();
conn.Close();
select id from 表格,id取出来是数组,不可以赋值给getID
可利用存储过程实现
好像还真是数组。
select id from a