Welcome Guest, Not a member yet? Register   Sign In
Friends count of my friends
#4

[eluser]rwestergren[/eluser]
Not sure what you mean by the original query. If you're trying to get the number of friends for all users:
Code:
function get_users()
{
    $query = $this->db->query("
    SELECT *,
            (SELECT COUNT(*) as friend_count
            FROM friends f
            INNER JOIN users u on(u.id = f.friend_id)
            WHERE f.user_id = $user_id AND f.approved = 1) AS f_count
    FROM users u1
    ");
    return $query;
}


Messages In This Thread
Friends count of my friends - by El Forum - 07-25-2012, 06:57 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:40 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:46 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:59 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:22 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:41 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:48 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:08 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:10 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB