Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
monstermichl authored Jan 15, 2025
1 parent 9c2ccf4 commit a49c86e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ DELETE:
DELETE FROM table1 WHERE c1 == 5 AND c3 == "quoted string"
```

## Placeholders
It is possible to use placeholders by including identifiers between curly brackets.
```
SELECT c1, c2 FROM table1 WHERE c3 == {0} AND c4 == {p}
```

## Tests

To make sure that the code is fully tested and covered:
Expand All @@ -99,4 +105,4 @@ ok github.com/krasun/gosqlparser 0.470s

## License

**gosqlparser** is released under [the MIT license](LICENSE).
**gosqlparser** is released under [the MIT license](LICENSE).

0 comments on commit a49c86e

Please sign in to comment.