We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f6bd9 commit e210af8Copy full SHA for e210af8
content/docs/guides/table.md
@@ -87,11 +87,11 @@ Update a record with multiple where clause
87
```java
88
89
// UPDATE movie
90
-// SET title='Fight Club', directed_by='Martyn Scorsese'
+// SET title='Blood Diamond', directed_by='Martyn Scorsese'
91
// WHERE id=1 AND title='Fight Club'
92
movieStore
93
.update()
94
- .set(new Movie(null, "Fight Club", "Martyn Scorsese"))
+ .set(new Movie(null, "Blood Diamond", "Martyn Scorsese"))
95
.where(id().eq(1).and().title().eq("Fight Club"))
96
.execute();
97
```
0 commit comments