基準に基づいてセットの減算を行いたいのですが。疑似クエリは次のようになります。
select table1.columnn1
,table1.column2
from table1, table2
where (table1.column1.value1 not in table2.column1
and
table1.column2.value2 not in table2.column2)
私はここにそれを作ることができます:
dim list = From tbl1 In table1 Where tt.column1 ...
そしてそこから私は何をすべきかわかりません。