We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b654510 commit 662b6f8Copy full SHA for 662b6f8
1 file changed
readme.md
@@ -465,14 +465,6 @@ $results = $db->get ('users');
465
// Gives: SELECT * FROM users WHERE firstName='John' OR firstName='peter'
466
```
467
468
-```php
469
-$db->where ('firstName', 'John');
470
-$db->orWhere ('firstName', 'Peter');
471
-$results = $db->get ('users');
472
-// Gives: SELECT * FROM users WHERE firstName='John' OR firstName='peter'
473
-```
474
-
475
476
NULL comparison:
477
```php
478
$db->where ("lastName", NULL, 'IS NOT');
0 commit comments