1
我有一個DataTableVB.NET查詢數據表
|------------|
| id | x | y |
|------------|
| 1 | 1 | 1 |
| 2 | 1 | 2 |
| 3 | 2 | 1 |
| 4 | 2 | 2 |
|------------|
我想通過x的值來過濾這個數據表來與人口數據集和數據表的一個新的DataTable
if x = 1
|------------|
| id | x | y |
|------------|
| 1 | 1 | 1 |
| 2 | 1 | 2 |
|------------|
or x = 2
|------------|
| id | x | y |
|------------|
| 3 | 2 | 1 |
| 4 | 2 | 2 |
|------------|
查詢仍然困擾着我。謝謝你的幫助。
查收我的回答你剛纔的問題http://stackoverflow.com/questions/8749526/vb- net-databinding從2表 – 2012-01-06 00:52:12
親切地檢查我的答案您的上一個問題http://stackoverflow.com/questions/8749526/vb-net-databinding-from-2-tables – 2012-01-06 00:52:40