Jump to content

Count on joint tables if....


isedeasy

Recommended Posts

$user = mysql_fetch_array(mysql_query("
        SELECT
        u.id,
        u.username,
        u.date_registered,
        COUNT(a.id) AS a_qty,
        COUNT(b.id) AS b_qty,
FROM users u
        LEFT JOIN table_a AS a ON a.user = u.id
        LEFT JOIN table_b AS b ON b.user = u.id
WHERE u.id = $id
        "));

 

Basically I want to count how many items a certain user has in multiple tables. The problem is that I only want to count the items in table_a that have a status=1 and same with table_b.

 

Is this possible or am I doing this completely wrong?

the above is just example code

Link to comment
Share on other sites

 

$user = mysql_fetch_array(mysql_query("
        SELECT
        u.id,
        u.username,
        u.date_registered,
        COUNT(a.id) AS a_qty,
        COUNT(b.id) AS b_qty,
FROM users u
        LEFT JOIN table_a AS a ON a.user = u.id  AND a.status= 1
        LEFT JOIN table_b AS b ON b.user = u.id  AND b.status= 1
WHERE u.id = $id
        "));

 

Just worked it out :P

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.