S
Sam
I have a dataset with 2 tables. I want to display in a datagrid the
rows in table 1, that are not in table 2. I'm trying the rowfilter on
a dataview, but I'm getting an error. The error I'm getting is:
Syntax error: Missing operand after 'ID' operator.
Here is what I'm doing...
dvInWindows = Me.g_dsCodes.Tables("Table1").DefaultView
dvInWindows.RowFilter = "ID1 not in (select ID2 from Table2)"
What is the correct syntax for this?
Thanks...
rows in table 1, that are not in table 2. I'm trying the rowfilter on
a dataview, but I'm getting an error. The error I'm getting is:
Syntax error: Missing operand after 'ID' operator.
Here is what I'm doing...
dvInWindows = Me.g_dsCodes.Tables("Table1").DefaultView
dvInWindows.RowFilter = "ID1 not in (select ID2 from Table2)"
What is the correct syntax for this?
Thanks...