Welcome Guest, Not a member yet? Register   Sign In
Active records - "smart" select
#6

[eluser]ibnclaudius[/eluser]
Code:
SELECT communities.*
    -- users who share at least one community
    FROM users
    JOIN users_communities ON (
        users_communities.user_id = users.id
        AND user_id <> 1
    )
    JOIN users_communities AS c_u_communities ON (
        c_u_communities.community_id = users_communities.community_id
        AND c_u_communities.user_id = 1
    )
    -- (end of) users who share at least one community
    -- these other users communities
    JOIN users_communities AS o_u_communities ON (
        o_u_communities.user_id = users.id
        AND o_u_communities.user_id <> 1
    )
    JOIN communities ON (
        communities.id = o_u_communities.community_id
    )
    LEFT JOIN users_communities AS c_u_not_communities ON (
        c_u_not_communities.community_id = o_u_communities.community_id
        AND c_u_not_communities.user_id = 1
    )
    WHERE c_u_not_communities.community_id IS NULL
    GROUP BY (communities.id)
    ORDER BY COUNT(communities.id) DESC
    LIMIT 2;


Messages In This Thread
Active records - "smart" select - by El Forum - 06-15-2012, 12:22 PM
Active records - "smart" select - by El Forum - 06-15-2012, 09:41 PM
Active records - "smart" select - by El Forum - 06-15-2012, 09:47 PM
Active records - "smart" select - by El Forum - 06-15-2012, 09:59 PM
Active records - "smart" select - by El Forum - 06-15-2012, 09:59 PM
Active records - "smart" select - by El Forum - 06-15-2012, 10:00 PM
Active records - "smart" select - by El Forum - 06-15-2012, 10:21 PM
Active records - "smart" select - by El Forum - 06-15-2012, 10:51 PM
Active records - "smart" select - by El Forum - 06-15-2012, 10:57 PM
Active records - "smart" select - by El Forum - 06-15-2012, 10:59 PM
Active records - "smart" select - by El Forum - 06-15-2012, 11:07 PM
Active records - "smart" select - by El Forum - 06-15-2012, 11:30 PM
Active records - "smart" select - by El Forum - 06-16-2012, 12:04 AM
Active records - "smart" select - by El Forum - 06-20-2012, 06:48 PM
Active records - "smart" select - by El Forum - 06-20-2012, 10:20 PM
Active records - "smart" select - by El Forum - 06-23-2012, 07:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB