Welcome Guest, Not a member yet? Register   Sign In
Table Prefix in COUNT using Active Record
#1

[eluser]Loic Sharma[/eluser]
Hello,

I think I might have found a possible bug using the Active Record system. I am trying to build a query like:

Code:
SELECT `prefix_posts`.*, COUNT(prefix_comments.id) FROM (`prefix_posts`) LEFT JOIN `prefix_comments` ON `prefix_posts`.`id` = `prefix_comments`.`post_id` GROUP BY `prefix_posts`.`id` ORDER BY `prefix_posts`.`id` DESC

To do this, I wrote the following code:

Code:
$this->db->select('posts.*, COUNT(comments.id)');
$this->db->from('posts');
$this->db->join('comments', 'posts.id = comments.post_id', 'LEFT');
$this->db->group_by('posts.id');
$this->db->order_by('posts.id', 'DESC');

$query = $this->db->get();

It seems that the Active Record system does not correctly prefix the comments table in the COUNT. The query produced is:

Code:
SELECT `prefix_posts`.*, COUNT(comments.id) FROM (`prefix_posts`) LEFT JOIN `prefix_comments` ON `prefix_posts`.`id` = `prefix_comments`.`post_id` GROUP BY `prefix_posts`.`id` ORDER BY `prefix_posts`.`id` DESC

Am I doing something wrong? Or is this a bug?

Thank you for any help! Smile


Messages In This Thread
Table Prefix in COUNT using Active Record - by El Forum - 07-07-2011, 02:22 PM
Table Prefix in COUNT using Active Record - by El Forum - 07-07-2011, 02:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB