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

I'm trying to do the below sql statement in GORM

select * from table1 where table1.x not in
      (select x from table 2 where y='something');

so, I have two tables, and needs to find the entries from table 1 which are not in table 2. In Grails

def xx= table2.findByY('something')
    def c = table1.createCriteria()
    def result= c.list {
      not (
        in('x', xx)
    )
}

the syntax is wrong, and I'm not sure how to simulate not in sql logic.

As a learning point, if someone can also tell me why minus (-) operator in grails/groovy doesn't work with list. I tried getting x and y seperately, and doing x.minus(y), but it doesn't change the list. I saw an explanation at Groovy on Grails list - not working? , but I would expect the list defined are local.

thank you so much.

share|improve this question
I saw how to use HQL queries at grails.org/GORM+-+Querying, but prefer to know the criteria syntax. thanks – bsr Mar 30 '10 at 3:14

2 Answers

up vote 3 down vote accepted

Hmm, I'm just learning GORM myself, but one thing I see is that in is a reserved word in groovy and so needs to be escaped as 'in'

share|improve this answer
You are right that in is a keyword, but I couldn't escape as mentioned. I used Restrictions.in (import org.hibernate.criterion.Restrictions), and the syntax was ok. still i couldn't get the logic work. I think there is an 'add' keyword to join in and not, but couldn't get it to work. hope someone would point me to the right direction. thanks for ur help – bsr Mar 30 '10 at 4:29

Ok.. got to work.. anyone interested..

Stephen was right, you have to escape in with 'in', as it is a reserved word. the syntax is.

def c = table1.createCriteria()
    def result= c.list {
      not {
        'in'("x", xx)
//xx could be a list, array etc. eg: [1,2,3]
    }
}
share|improve this answer

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.