Groovy   发布时间:2022-04-12  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了GRAILS中Criteria的OR的写法大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。


Java代码  

GRAILS中Criteria的OR的写法

  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.     )   

大佬总结

以上是大佬教程为你收集整理的GRAILS中Criteria的OR的写法全部内容,希望文章能够帮你解决GRAILS中Criteria的OR的写法所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。