diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-08-31 16:31:08 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-08-31 16:31:08 +0200 |
commit | 0134ca4d6be32009c7fb7d40cfdbd31e19b970c3 (patch) | |
tree | 456dcc127a03d5bd2f96c5ec33c0263b18354319 /user_guide/database | |
parent | cb36e34719bf60904bc7fa39dfbcb0fa86310e66 (diff) |
fixed incorrect example SQL output example
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/active_record.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 3a40dc2ce..04e81d8cc 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -228,7 +228,7 @@ $this->db->join('comments', 'comments.id = blogs.id', <strong>'left'</strong>);< <code>$this->db->where('name', $name);<br />
$this->db->where('title', $title);<br />
$this->db->where('status', $status);
- <br /><br />// WHERE = name 'Joe' AND title = 'boss' AND status = 'active' </code> </li>
+ <br /><br />// WHERE name 'Joe' AND title = 'boss' AND status = 'active' </code> </li>
<li><strong>Custom key/value method:</strong>
|