mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
update docs/zh/base/querywrapper.md.
QueryWrapper query = new QueryWrapper()
.select(
ACCOUNT.ID.as("accountId")
, ACCOUNT.USER_NAME
.from(ACCOUNT.as("a")); , ACCOUNT.USER_NAME后面少了个)
Signed-off-by: 豌豆粉 <173119755@qq.com>
This commit is contained in:
parent
d2dfd5582e
commit
59346fd96c
@ -68,7 +68,7 @@ SELECT id, user_name FROM tb_account
|
|||||||
QueryWrapper query = new QueryWrapper()
|
QueryWrapper query = new QueryWrapper()
|
||||||
.select(
|
.select(
|
||||||
ACCOUNT.ID.as("accountId")
|
ACCOUNT.ID.as("accountId")
|
||||||
, ACCOUNT.USER_NAME
|
, ACCOUNT.USER_NAME)
|
||||||
.from(ACCOUNT.as("a"));
|
.from(ACCOUNT.as("a"));
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user