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.
2 parents 70a3686 + fbd3093 commit 1ecb5dfCopy full SHA for 1ecb5df
readme.md
@@ -338,7 +338,7 @@ Or raw condition with variables:
338
$db->where ("(id = ? or id = ?)", Array(6,2));
339
$db->where ("login","mike")
340
$res = $db->get ("users");
341
-// Gives: SELECT * FROM users WHERE (id = 2 or id = 2) and login='mike';
+// Gives: SELECT * FROM users WHERE (id = 6 or id = 2) and login='mike';
342
```
343
344
0 commit comments