Skip to content

Commit db4a68e

Browse files
committed
UPD operators table
1 parent 334c430 commit db4a68e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -244,25 +244,20 @@ prefixes the `and` and `or` logical operators for clarity.
244244

245245
| SQL Operator | Regular (AND) | AND | OR |
246246
| ------------- | ----------------------------- | -------------------------------- | ------------------------------- |
247-
| Comparison | | | |
248247
| `=` | `equals($op1, $op2)` | `andEquals($op1, $op2)` | `orEquals($op1, $op2)` |
249248
| `<>` or `!=` | `notEquals($op1, $op2)` | `andNotEquals($op1, $op2)` | `orNotEquals($op1, $op2)` |
250249
| `<` | `lessThan($op1, $op2)` | `andLessThan($op1, $op2)` | `orLessthan($op1, $op2)` |
251250
| `<=` | `lessEquals($op1, $op2)` | `andLessEquals($op1, $op2)` | `orLessEquals($op1, $op2)` |
252251
| `>` | `greaterThan($op1, $op2)` | `andGreaterThan($op1, $op2)` | `orGreaterThan($op1, $op2)` |
253252
| `>=` | `greaterEquals($op1, $op2)` | `andGreaterEquals($op1, $op2)` | `orGreaterEquals($op1, $op2)` |
254-
| Pattern Match | | | |
255253
| `LIKE` | `like($op1, $pattern)` | `andLike($op1, $pattern)` | `orLike($op1, $pattern)` |
256254
| `NOT LIKE` | `notLike($op1, $pattern)` | `andNotLike($op1, $pattern)` | `orNotLike($op1, $pattern)` |
257255
| `REGEXP` | `regexp($op1, $pattern)` | `andRegexp($op1, $pattern)` | `orRegexp($op1, $pattern)` |
258256
| `NOT REGEXP` | `notRegexp($op1, $pattern)` | `andNotRegexp($op1, $pattern)` | `orNotRegexp($op1, $pattern)` |
259-
| Nullability | | | |
260257
| `IS NULL` | `null($op)` | `andNull($op)` | `orNull($op)` |
261258
| `IS NOT NULL` | `notNull($op)` | `andNotNull($op)` | `orNotNull($op)` |
262-
| Range | | | |
263259
| `BETWEEN` | `between($op, $min, $max)` | `andBetween($op, $min, $max)` | `orBetween($op, $min, $max)` |
264260
| `NOT BETWEEN` | `notBetween($op, $min, $max)` | `andNotBetween($op, $min, $max)` | `orNotBetween($op, $min, $max)` |
265-
| Membership | | | |
266261
| `IN` | `in($op, $array)` | `andIn($op, $array)` | `orIn($op, $array)` |
267262
| `NOT IN` | `notIn($op, $array)` | `andNotIn($op, $array)` | `orNotIn($op, $array)` |
268263

0 commit comments

Comments
 (0)