I'm using the self servicing approach and was wondering how you could do the following:
SELECT DISTINCT CarID FROM CarView WHERE CarMake = 'Ford'
CarView is of course a view. I thought I could use the group by approach, however I was receiving a run time error on the selectQuery. Also, after I fill the typed view is it possible to generate an ArrayList of all car IDs in the result set (without iterating the result set)?