vote up 0 vote down star

I'm trying to narrow down the rows that are in my DataView based on a relation with another table, and the RowFilter I'm using is as follows;

dv = new DataView(myDS.myTable,
    			 "id IN (SELECT DISTINCT parentID FROM myOtherTable)",
    			 "name asc",
    			 DataViewRowState.CurrentRows);

"myTable" and "myOther" table are related via myTable.ID and myOtherTable.parentID, and so the idea is that the DataView should only contain rows from "myTable" which have corresponding child rows in "myOtherTable".

Unfortunately, I'm getting this error;

Syntax error: Missing operand after 'DISTINCT' operator.

The SQL is fine as far as I am aware, so I'm wondering is there some limitation on using the DISTINCT keyword as part of RowFilter's SQL? Anyone have any idea?

flag

Why were "Hello" and "cheers" edited out of my post? Is there a rule against using any words which are not directly related to the question? – El Cristoir Mar 2 at 16:05

3 Answers

vote up 3 vote down check

Unfortunately, I don't think you can't perform a subquery in a DataView's filter expression. You are only allowed to use a subset of SQL in these expressions (documented here).

You'll probably need to perform your subquery (SELECT DISTINCT parentID FROM myOtherTable) separately.

This article describes the problem and a possible solution.

link|flag
I decided to work around the problem by creating my own distinct list of parentIDs and then just passing that list into an "id IN (...)" clause (which thankfully IS supported, unlike DISTINCT or GROUP BY). Cheers – El Cristoir Mar 2 at 17:22
vote up 1 vote down

This question will show you how to create a distinct set (actually a new datatable) using a DataView on a table. The approach is slightly different than what you're doing above.

link|flag
vote up 0 vote down

Try just leaving out the "DISTINCT". In this case, the results should be the same with or without. Troubleshoot from there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.