這裏是我的代碼,數據集過濾方法
Conn.Open();
DataTable dt = new DataTable();
DataSet ds = new DataSet();
SqlCommand sqlCmd = new SqlCommand("SELECT * from CurrentDataCR ",Conn);
SqlDataAdapter sqlDa = new SqlDataAdapter(sqlCmd);
sqlDa.Fill(ds);
ds.Tables[0].DefaultView.RowFilter = " mst_remote_station_id Like'*9001*'";
我在這裏得到完整的行id的9001我需要爲這個ID只有一個值。
難道你不能只在你的查詢中選擇你需要的列嗎? – Matheno