Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have db with scheme 1. _id 2. word

And i have ArrayList with for example 5 words (a1, a2, a3, a4, a5)

What is the best way to construct query to get words from DB which don't contain words from ArrayList?

Sowthing like

Select * from MYTABLE where WORD not in "all words from ArrayList"

share|improve this question

2 Answers

Build a string representing the set of words, and use that as an argument to the query.

StringBuilder wordSet = new StringBuilder();
wordSet.append('(');
for( String word : wordsList )
{
    if(wordSet.length() > 1)
        wordSet.append(',');
    wordSet.append(word);
}
wordSet.append(')');
share|improve this answer
may be it is possible to make using dbHelper.query() method and pass List as parameter? – Liza Tjaica Dec 30 '12 at 0:04

Pseudo Query

Select * from mytable

Use the except operator against a selection containing words in array list http://en.wikipedia.org/wiki/Set_operations_(SQL)#EXCEPT_operator

share|improve this answer
This is possible, but it's very cumbersome to get the words from the arraylist into a query, and it would not be any more efficient. – CL. Dec 30 '12 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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