博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring data jpa方法命名规则
阅读量:5173 次
发布时间:2019-06-13

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

关键字 方法命名 sql where字句
And findByNameAndPwd where name= ? and pwd =?
Or findByNameOrSex where name= ? or sex=?
Is,Equals findById,findByIdEquals where id= ?
Between findByIdBetween where id between ? and ?
LessThan findByIdLessThan where id < ?
LessThanEquals findByIdLessThanEquals where id <= ?
GreaterThan findByIdGreaterThan where id > ?
GreaterThanEquals findByIdGreaterThanEquals where id > = ?
After findByIdAfter where id > ?
Before findByIdBefore where id < ?
IsNull findByNameIsNull where name is null
isNotNull,NotNull findByNameNotNull where name is not null
Like findByNameLike where name like ?
NotLike findByNameNotLike where name not like ?
StartingWith findByNameStartingWith where name like '?%'
EndingWith findByNameEndingWith where name like '%?'
Containing findByNameContaining where name like '%?%'
OrderBy findByIdOrderByXDesc where id=? order by x desc
Not findByNameNot where name <> ?
In findByIdIn(Collection<?> c) where id in (?)
NotIn findByNameNot where name <> ?
True findByAaaTue where aaa = true
False findByAaaFalse where aaa = false
IgnoreCase findByNameIgnoreCase where UPPER(name)=UPPER(?)
top findTop100 top 10/where ROWNUM <=10

转载于:https://www.cnblogs.com/oxygenG/p/10057525.html

你可能感兴趣的文章
C++Primer学习笔记《三》
查看>>
HTML 速查列表
查看>>
英语音标发音技巧难点—英语培训学习资料_伯明汉吧_百度贴吧
查看>>
第二次冲刺第三天
查看>>
详解通信 C# Socket之问题
查看>>
基于linux操作系统下s5pv210板子的按键中断实验
查看>>
构建高性能ASP.NET站点 网站优化需要考虑的方面
查看>>
百科知识 .e,.ec文件如何打开
查看>>
【转】以太网帧、IP报文格式
查看>>
【java】控制台实现贪吃蛇小游戏-LinkedList、Scanner
查看>>
iOS第4天数组排序
查看>>
shell监控自动备份是否成功(判断文件是否存在)
查看>>
接口的理解
查看>>
JavaScript快速入门
查看>>
python---socket与socketserver
查看>>
第五周翻译
查看>>
asp.net response.redirect 打开新窗口(转载)
查看>>
Lifting the Stone
查看>>
做前端技术方案选型的时候,你是怎么做决策的?
查看>>
hdu4289 最小割最大流 (拆点最大流)
查看>>