And |
and |
findByLastnameAndFirstname |
… where x.lastname = ?1 and x.firstname = ?2 |
Or |
or |
findByLastnameOrFirstname |
… where x.lastname = ?1 or x.firstname = ?2 |
Is,Equals |
= |
findByFirstname,findByFirstnameIs,findByFirstnameEquals |
… where x.firstname = ?1 |
Between |
between xxx and xxx |
findByStartDateBetween |
… where x.startDate between ?1 and ?2 |
LessThan |
< |
findByAgeLessThan |
… where x.age < ?1 |
LessThanEqual |
<= |
findByAgeLessThanEqual |
… where x.age <= ?1 |
GreaterThan |
> |
findByAgeGreaterThan |
… where x.age > ?1 |
GreaterThanEqual |
>= |
findByAgeGreaterThanEqual |
… where x.age >= ?1 |
After |
> |
findByStartDateAfter |
… where x.startDate > ?1 |
Before |
< |
findByStartDateBefore |
… where x.startDate < ?1 |
IsNull |
is null |
findByAgeIsNull |
… where x.age is null |
IsNotNull,NotNull |
is not null |
findByAge(Is)NotNull |
… where x.age not null |
Like |
like |
findByFirstnameLike |
… where x.firstname like ?1 |
NotLike |
not like |
findByFirstnameNotLike |
… where x.firstname not like ?1 |
StartingWith |
like 'xxx%' |
findByFirstnameStartingWith |
… where x.firstname like ?1(parameter bound with appended %) |
EndingWith |
like 'xxx%' |
findByFirstnameEndingWith |
… where x.firstname like ?1(parameter bound with prepended %) |
Containing |
like '%xxx%' |
findByFirstnameContaining |
… where x.firstname like ?1(parameter bound wrapped in %) |
OrderBy |
order by |
findByAgeOrderByLastnameDesc |
… where x.age = ?1 order by x.lastname desc |
Not |
<> |
findByLastnameNot |
… where x.lastname <> ?1 |
In |
in() |
findByAgeIn(Collection ages) |
… where x.age in ?1 |
NotIn |
not in() |
findByAgeNotIn(Collection ages) |
… where x.age not in ?1 |
TRUE |
=true |
findByActiveTrue() |
… where x.active = true |
FALSE |
=false |
findByActiveFalse() |
… where x.active = false |
IgnoreCase |
upper(xxx)=upper(yyyy) |
findByFirstnameIgnoreCase |
… where UPPER(x.firstame) = UPPER(?1) |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
2022-07-14 centos7 无网络状态下安装更新包