Jump to content

List of clients by invoices


nitaish

Recommended Posts

I would have thought the following should return what you want...

SELECT tblclients.*
FROM tblinvoices
JOIN tblclients ON tblinvoices.userid = tblclients.id 
WHERE tblinvoices.`status` = 'Unpaid' 
GROUP BY tblinvoices.userid 
HAVING count(tblinvoices.userid) >= 2

i'm not sure what you want in terms of clients details, so i'm returning everything! you can tweak the select to specify which columns you want to return in the results.

Edited by brian!
Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated