0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00
sqlpp11/docs/Update.md
Farook Al-Sammarraie 993ddcc049
Created docs directory (#364)
Copied wiki into docs directory
This allows developers to open pull requests to edit documentation and also use mkdocs to create a styled HTML version

* changed wiki links to relative links

* removed Planned-Features.md

* removed reference to planned features in Home.md
2021-05-09 09:01:22 +02:00

6 lines
219 B
Markdown

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)));
```