Welcome Guest, Not a member yet? Register   Sign In
Where do I do this?
#2

[eluser]danmontgomery[/eluser]
This has very little to do with CI, it's basic database functionality.

The query in plain SQL would be:

Code:
SELECT product.*, image.url
FROM product
LEFT JOIN image ON image.product_id = product.id

Assuming you'd want to use CI's active record, that would be:

Code:
$this->db->select('product.*, image.url')->join('image', 'image.product_id = product.id', 'left')->get('product');


Messages In This Thread
Where do I do this? - by El Forum - 07-01-2010, 07:59 AM
Where do I do this? - by El Forum - 07-01-2010, 08:13 AM
Where do I do this? - by El Forum - 07-01-2010, 09:10 AM
Where do I do this? - by El Forum - 07-01-2010, 09:45 AM
Where do I do this? - by El Forum - 07-01-2010, 11:15 AM



Theme © iAndrew 2016 - Forum software by © MyBB