Welcome Guest, Not a member yet? Register   Sign In
ORDER BY COUNT
#1

[eluser]aruntvla[/eluser]
Order the category according to the number of post..

Is thre any idea about how i sort a category list using the count of post..

in my case count is an integer number but how it use with an ORDER BY query..help me plz..
#2

[eluser]pickupman[/eluser]
Have you tried:
Code:
$this->db->select('*, COUNT(category_id) as rows');
$this->db->from('posts');
$this->db->group_by('category_id');
$this->db->order_by('rows','DESC');
$query = $this->db->get();




Theme © iAndrew 2016 - Forum software by © MyBB