-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionBuilderInterface.php
More file actions
344 lines (325 loc) · 10.9 KB
/
ExpressionBuilderInterface.php
File metadata and controls
344 lines (325 loc) · 10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<?php
namespace Spark\Db;
/**
* An ExpressionBuilder allows the construction of SQL expressions through an object oriented interface.
*
* @author Chris Harris <c.harris@hotmail.com>
* @version 1.0.0
* @since 1.1.0
*/
interface ExpressionBuilderInterface
{
/**
* Creates a logical 'AND' relation between one or more restrictions for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->andX('u.name = :name', 'u.age = :age'));
* </code>
*
* @param string|array $expressions the restrictions for this logical relation.
* @return Composite a collection of conditions for this logical relation.
*/
public function andX($expressions);
/**
* Creates a logical 'OR' relation between one or more restrictions for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->orX('u.name = :name', 'u.age = :age'));
* </code>
*
* @param string|array $expressions the restrictions for this logical relation
* @return Composite a collection of conditions for this logical relation.
*/
public function orX($expressions);
/**
* Creates an equals comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->eq('u.gender', ':gender'));
* </code>
*
* @param string $name the name of the column.
* @param mixed $value the value o named parameter.
* @return string the SQL expression.
*/
public function eq($name, $value);
/**
* Creates an not equals comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->neq('u.gender', ':gender'));
* </code>
*
* @param string $name the name of the column.
* @param mixed $value the value or named parameter.
* @return string the SQL expression.
*/
public function neq($name, $value);
/**
* Creates a greater than comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->neq('u.age', ':age'));
* </code>
*
* @param string $name the name of a column.
* @param mixed $value the value or named parameter.
* @return string the SQL expression.
*/
public function gt($name, $value);
/**
* Creates a greater than or equals comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->gte('u.age', ':age'));
* </code>
*
* @param string $name the name of a column.
* @param mixed $value the value or named parameter.
* @return string the SQL expression.
*/
public function gte($name, $value);
/**
* Creates a smaller than comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->lt('u.age', ':age'));
* </code>
*
* @param string $name the name of a column.
* @param mixed $value the value or named parameter.
* @return string the SQL expression.
*/
public function lt($name, $value);
/**
* Creates a smaller than or equals comparison for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->lte('u.age', ':age'));
* </code>
*
* @param string $name the name of a column.
* @param mixed $value the value or named parameter.
* @return string the SQL expression.
*/
public function lte($name, $value);
/**
* Creates an AVG() function for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->avg('u.height'));
* </code>
*
* @param string|array $values the name of a column or collection of values.
* @return string the SQL expression.
*/
public function avg($values);
/**
* Creates a SUM() function for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->sum('u.salary'));
* </code>
*
* @param string|array $values the name of a column or collection of values.
* @return string the SQL expression.
*/
public function sum($values);
/**
* Creates a MAX() function for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->max('u.age'));
* </code>
*
* @param string|array $values the name of a column or collection of values.
* @return string the SQL expression.
*/
public function max($values);
/**
* Creates a MIN() function for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->max('u.weight'));
* </code>
*
* @param string|array $values the name of a column or collection of values.
* @return string the SQL expression.
*/
public function min($values);
/**
* Creates an IN clause for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->in('u.age', array(10, 20, :age, 40, 50)));
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->in('u.age', function($qb) {
* return $qb->select('e.age')
* ->from('employees', 'e')
* ->where('e.gender', 'M');
* }));
* </code>
*
* @param string $name the name of a column.
* @param array|callable $value a collection of values or a callback function.
* @return string the SQL expression.
*/
public function in($name, $values);
/**
* Creates an NOT IN clause for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->notIn('u.age', array(10, 20, :age, 40, 50)));
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->notIn('u.name', function($qb) {
* return $qb->select('e.name')
* ->from('employees', 'e')
* ->where('e.name', 'john');
* }));
* </code>
*
* @param string $name the name of a column.
* @param array|callable $value a collection of values or a callback function.
* @return string the SQL expression.
*/
public function notIn($name, $values);
/**
* Creates an IN clause for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->in('u.age', array(10, 20, :age, 40, 50)));
* </code>
*
* @param mixed $name the name of a column or value.
* @param mixed $lower the lower bound value.
* @param mixed $upper the upper bound value.
* @return string the SQL expression.
*/
public function between($value, $lower, $upper);
/**
* Creates a COUNT() function for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name', $qb->expr()->count('*'))
* ->from('users', 'u');
* </code>
*
* @param string $name the name of a column.
* @return string the SQL expression.
*/
public function count($name);
/**
* Creates a IS NULL condition for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->isNull('u.email'));
* </code>
*
* @param string $name the name of a column.
* @return string the SQL expression.
*/
public function isNull($name);
/**
* Creates a IS NOT NULL condition for this expression.
*
* <code>
* $ad = new Adapter(array('driver' => 'wpdb'));
* $qb = $ad->getQueryBuilder();
*
* $select = $qb->select('u.name')
* ->from('users', 'u')
* ->where($qb->expr()->isNotNull('u.gender'));
* </code>
*
* @param string $name the name of a column.
* @return string the SQL expression.
*/
public function isNotNull($name);
}