Skip to content

Commit a49c86e

Browse files
authored
Update README.md
1 parent 9c2ccf4 commit a49c86e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ DELETE:
8484
DELETE FROM table1 WHERE c1 == 5 AND c3 == "quoted string"
8585
```
8686

87+
## Placeholders
88+
It is possible to use placeholders by including identifiers between curly brackets.
89+
```
90+
SELECT c1, c2 FROM table1 WHERE c3 == {0} AND c4 == {p}
91+
```
92+
8793
## Tests
8894

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

100106
## License
101107

102-
**gosqlparser** is released under [the MIT license](LICENSE).
108+
**gosqlparser** is released under [the MIT license](LICENSE).

0 commit comments

Comments
 (0)