mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
update docs
This commit is contained in:
parent
283b578989
commit
a13540b83d
@ -196,7 +196,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
|
|||||||
.from(ACCOUNT)
|
.from(ACCOUNT)
|
||||||
.where(ACCOUNT.ID.ge(100))
|
.where(ACCOUNT.ID.ge(100))
|
||||||
.and(
|
.and(
|
||||||
exist( // or notExist(...)
|
exists( // or notExists(...)
|
||||||
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -184,7 +184,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
|
|||||||
.from(ACCOUNT)
|
.from(ACCOUNT)
|
||||||
.where(ACCOUNT.ID.ge(100))
|
.where(ACCOUNT.ID.ge(100))
|
||||||
.and(
|
.and(
|
||||||
exist(
|
exists(
|
||||||
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|||||||
@ -246,7 +246,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
|
|||||||
.from(ACCOUNT)
|
.from(ACCOUNT)
|
||||||
.where(ACCOUNT.ID.ge(100))
|
.where(ACCOUNT.ID.ge(100))
|
||||||
.and(
|
.and(
|
||||||
exist( // or notExist(...)
|
exists( // or notExists(...)
|
||||||
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user