update docs

This commit is contained in:
开源海哥 2023-03-21 09:41:02 +08:00
parent 5667b67eb8
commit 234faca5ce

View File

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