博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JPA增删改查,
阅读量:6500 次
发布时间:2019-06-24

本文共 1381 字,大约阅读时间需要 4 分钟。

hot3.png

1.  //And --- 等价于 SQL 中的 and 关键字

  public List
 findByHeightAndSex(int height,char sex);  

 

2. // Or --- 等价于 SQL 中的 or 关键字

  public List
 findByHeightOrSex(int height,char sex);  

 

3.   //Between --- 等价于 SQL 中的 between 关键字

 

 public List
 findByHeightBetween(int min,int max); 

 

4.  //LessThan --- 等价于 SQL 中的 "<"

  public List
 findByHeightLessThan(int max);  

  

  5.//GreaterThan --- 等价于 SQL 中的">"

 public List
 findByHeightGreaterThan(int min);  

   

6.  //IsNull --- 等价于 SQL 中的 "is null"

 public List
 findByNameIsNull();  

   

7. //IsNotNull --- 等价于 SQL 中的 "is not null"

public List
 findByNameIsNotNull();  

 

8.//NotNull --- 与 IsNotNull 等价;  

  public List
 findByNameNotNull();  

 

9.  //Like --- 等价于 SQL 中的 "like",

  public List
 findByNameLike(String name);  

  

10.  //NotLike --- 等价于 SQL 中的 "not like"

  public List
 findByNameNotLike(String name);  

  

11. //OrderBy --- 等价于 SQL 中的 "order by",

  public List
findByNameNotNullOrderByHeightAsc();  

  

12.  //Not --- 等价于 SQL 中的 "! ="

 public List
 findByNameNot(String name);  

  

13.  //In --- 等价于 SQL 中的 "in"

 public List
 findByNameIn(String name);  

   

14.  //NotIn --- 等价于 SQL 中的 "not in"

  public List
 findByNameNotIn(String name); 

 

转载于:https://my.oschina.net/imsorry/blog/1510262

你可能感兴趣的文章
golang的goroutine是如何实现的?
查看>>
乐视云基于Kubernetes的PaaS平台建设
查看>>
R 学习笔记《十》 R语言初学者指南--图形工具
查看>>
PHP通过读取DOM抓取信息
查看>>
DICOM医学图像处理:DICOM网络传输
查看>>
nio和传统Io的区别
查看>>
移动端网页布局中需要注意事项以及解决方法总结
查看>>
(原创)Linux下查看系统版本号信息的方法
查看>>
oracle
查看>>
redis使用过程中主机内核层面的一些优化
查看>>
我也要谈谈大型网站架构之系列(2)——纵观历史演变(下)
查看>>
大话设计模式(Golang) 二、策略模式
查看>>
使用PostgreSQL 9.6 架设mediawiki服务器
查看>>
数据库服务器硬件对性能的影响
查看>>
LVM
查看>>
windows+群辉服务器环境下,搭建git版本管理
查看>>
Boolean类型
查看>>
Ubuntu 修改源
查看>>
php 几个比较实用的函数
查看>>
(译)OpenGL ES2.0 – Iphone开发指引
查看>>