Skip to content

Commit e210af8

Browse files
committedSep 16, 2024
DDD
1 parent 44f6bd9 commit e210af8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎content/docs/guides/table.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ Update a record with multiple where clause
8787
```java
8888

8989
// UPDATE movie
90-
// SET title='Fight Club', directed_by='Martyn Scorsese'
90+
// SET title='Blood Diamond', directed_by='Martyn Scorsese'
9191
// WHERE id=1 AND title='Fight Club'
9292
movieStore
9393
.update()
94-
.set(new Movie(null, "Fight Club", "Martyn Scorsese"))
94+
.set(new Movie(null, "Blood Diamond", "Martyn Scorsese"))
9595
.where(id().eq(1).and().title().eq("Fight Club"))
9696
.execute();
9797
```

0 commit comments

Comments
 (0)