Commit 72d231de authored by Alexander Butenko's avatar Alexander Butenko Committed by GitHub

Merge pull request #597 from johnmap/patch-1

remove duplicate code example (OR clause)
parents ef039a5a 662b6f8d
......@@ -465,14 +465,6 @@ $results = $db->get ('users');
// Gives: SELECT * FROM users WHERE firstName='John' OR firstName='peter'
```
```php
$db->where ('firstName', 'John');
$db->orWhere ('firstName', 'Peter');
$results = $db->get ('users');
// Gives: SELECT * FROM users WHERE firstName='John' OR firstName='peter'
```
NULL comparison:
```php
$db->where ("lastName", NULL, 'IS NOT');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment