![]() |
Need help with QUERY to list certain users
Hi everyone,
I'm trying to create a Query on my database which will show me all member with more than 2 messages in their inbox. From these users I also want to know their username, their email AND the amount of messages they have in their inbox. I would be more than happy if someone could give it a try :rolleyes: Thanks very much in advance, Bellinis |
[sql]select username, email, pmcount from
(select username, email, count(pmid) as pmcount from pm AS pm left join user AS user on (user.userid=pm.userid) where folderid=0 group by pm.userid) AS subselect where pmcount > 2[/sql] Please not that this needs to be adjusted if you are using Table-Prefixes. |
Note the above query only works in MySQL4.1+ :)
|
Well ... yes.
Doesn't everybody use that by now ;) |
All times are GMT. The time now is 03:18 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|