ulib/3party/sqlpp11/docs/Update.md

6 lines
219 B
Markdown
Raw Normal View History

2024-01-06 21:51:10 +08:00
The detailed documentation is still missing here, but here is an example that might help if you have read about [select statements](Select.md).
```C++
db(update(tab).set(tab.gamma = false).where(tab.alpha.in(1)));
```