我想根据标准对集合进行减法。伪查询如下所示:
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 ...
从那里我不知道该怎么办。