Welcome Guest, Not a member yet? Register   Sign In
join not returning all rows
#1

[eluser]mike34666[/eluser]
i have 3 tables involved in this query. The first is an entry table which can have 1 or more users associated with it by the entry_user table. Then I have the user table which holds the user info. The following sql command works.

Code:
select entry.id, user.first_name
from entry
left join entry_user on entry.id = entry_user.entry_id
left join user on entry_user.user_id = user.id
where entry.id = 9;

in this example the entry table is associated with 2 users. so it returns:

+----+------------+
| id | first_name |
+----+------------+
| 9 | David |
| 9 | Jonny |
+----+------------+

But when I try and use the codeigniter object oriented method it only returns 1 row, ie 1 name. here is the code i tried:

Code:
$this->db->select('entry.id AS entry_id, user.first_name AS first_name');
$this->db->from('entry');
$this->db->join('entry_user', 'entry_user.id = entry.id', 'left');
$this->db->join('user', 'entry_user.user_id = user.id', 'left');
$this->db->where('entry.id = 9');
$query = $this->db->get();

I know that I can put the straight sql command in the get command but I want to use the object oriented method if possible for clean code. can anybody tell me what I am doing wrong? thanks.
#2

[eluser]überfuzz[/eluser]
Could you display the query-string rendered by your code?
#3

[eluser]bigtony[/eluser]
In your join to entry_user, your original sql references entry_user.entry_id but your AR version references entry_user.id.
#4

[eluser]mike34666[/eluser]
thanks bigtony - that did the trick. sometimes after looking at code all night, you miss the simplest things.




Theme © iAndrew 2016 - Forum software by © MyBB