We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c2ccf4 commit a49c86eCopy full SHA for a49c86e
README.md
@@ -84,6 +84,12 @@ DELETE:
84
DELETE FROM table1 WHERE c1 == 5 AND c3 == "quoted string"
85
```
86
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
+
93
## Tests
94
95
To make sure that the code is fully tested and covered:
@@ -99,4 +105,4 @@ ok github.com/krasun/gosqlparser 0.470s
99
105
100
106
## License
101
107
102
-**gosqlparser** is released under [the MIT license](LICENSE).
108
+**gosqlparser** is released under [the MIT license](LICENSE).
0 commit comments