GRAILS中Criteria的OR的写法


Java代码  

收藏代码

  1. Person.withCriteria {   
  2.     or {   
  3.         and {   
  4.             eq 'lastName''Winter'   
  5.             eq 'firstName''Johnny'   
  6.         }   
  7.         and {   
  8.             eq 'lastName''brown'   
  9.             eq 'firstName''Jeff'   
  10.         }   
  11.     }   
  12. }   

 

上面的语言将对应如下sql语句

 

 

 

  1. select   
  2.     this_.id as id0_0_,   
  3.     this_.version as version0_0_,   
  4.     this_.last_name as last3_0_0_,   
  5.     this_.first_name as first4_0_0_   
  6. from   
  7.     person this_   
  8. where   
  9.     (   
  10.         (   
  11.             this_.last_name='Winter'   
  12.             and this_.first_name='Johnny'   
  13.         )   
  14.         or (   
  15.             this_.last_name='brown'   
  16.             and this_.first_name='Jeff'   
  17.         )   
  18.     )   

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...