up vote 0 down vote favorite
share [g+] share [fb]

I am trying to construct a Groovy statement to find values that don't exist in a pre-populated list.

I'm using SQL and think I want to do something like :

myList = [a, b, c, d, e ... lots more data]

sql.findAll("SELECT * FROM table WHERE code not in " + <myList>)

I have a feeling this is very simple .. I'm just not sure how to construct the closure.

Also open for any other suggestions on how to do it ..

Thanks for any insight ..

link|improve this question

67% accept rate
What do you mean by closure here? – rwilliams Nov 3 '09 at 18:36
gah .. I meant statement. – sidd.darko Nov 3 '09 at 18:43
feedback

1 Answer

up vote 0 down vote accepted

The value of myList in the sql statement should be a comma separated list of values. You eventually want your query to look like

SELECT * FROM table WHERE code not in ('a','b','c','d','e',...lots more)

Have you tried something like this?

sql.findAll("SELECT * FROM table WHERE code not in ('" + myList.join("','") + "')")
link|improve this answer
That did exactly what I needed. Thank you ! – sidd.darko Nov 3 '09 at 18:46
feedback

Your Answer

 
or
required, but never shown

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