update docs

This commit is contained in:
开源海哥 2023-04-25 16:58:27 +08:00
parent 283b578989
commit a13540b83d
3 changed files with 3 additions and 3 deletions

View File

@ -196,7 +196,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
.from(ACCOUNT)
.where(ACCOUNT.ID.ge(100))
.and(
exist( // or notExist(...)
exists( // or notExists(...)
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
)
);

View File

@ -184,7 +184,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
.from(ACCOUNT)
.where(ACCOUNT.ID.ge(100))
.and(
exist(
exists(
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
)
);

View File

@ -246,7 +246,7 @@ QueryWrapper queryWrapper=QueryWrapper.create()
.from(ACCOUNT)
.where(ACCOUNT.ID.ge(100))
.and(
exist( // or notExist(...)
exists( // or notExists(...)
selectOne().from(ARTICLE).where(ARTICLE.ID.ge(100))
)
);