Skip to content

Commit

Permalink
Fix generated query in Retrieving specific data from multiple tables …
Browse files Browse the repository at this point in the history
…section [ci skip]
  • Loading branch information
vipulnsward committed Mar 4, 2017
1 parent 3a72b55 commit c0f621a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/active_record_querying.md
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@ SELECT people.id, people.name, comments.text
FROM people
INNER JOIN comments
ON comments.person_id = people.id
WHERE comments.created_at = '2015-01-01'
WHERE comments.created_at > '2015-01-01'
```

### Retrieving specific data from multiple tables
Expand Down

0 comments on commit c0f621a

Please sign in to comment.