We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ca15c commit 071aa9eCopy full SHA for 071aa9e
README.md
@@ -111,4 +111,53 @@ q := sqlb.Delete("users").
111
```bash
112
# output
113
delete from users where id=2 or item not in (0,1);
114
-```
+```
115
+
116
117
+### Base Functions
118
119
+* Select
120
+* From
121
+* SQL
122
+* Build
123
+* Stmt
124
+* Error
125
+* Args
126
127
128
129
+### Clause Functions
130
131
+* Where
132
+* Or
133
+* Having
134
+* GroupBy
135
+* OrderBy
136
+* Offset
137
+* Limit
138
+* Sort
139
+* Take
140
+* Raw
141
142
+### Expression functions
143
144
+* Coalesce
145
+* Nullif
146
+* Eq
147
+* NotEq
148
+* In
149
+* NotIn
150
+* Between
151
+* IsNull
152
+* IsNotNull
153
+* Is
154
+* IsNot
155
+* Like
156
+* Ilike
157
+* Expression
158
159
160
+### Helpers
161
162
+* Debug
163
+* CleanSQL
0 commit comments