Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1068577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:18:20+00:00 2026-05-16T20:18:20+00:00

Heya!, I have the below query: SELECT t1.pm_id FROM fb_user_pms AS t1, fb_user_pm_replies AS

  • 0

Heya!, I have the below query:

SELECT t1.pm_id 
  FROM fb_user_pms AS t1, 
       fb_user_pm_replies AS t2 
 WHERE (t1.pm_id = '{$pm_id}' 
   AND t1.profile_author = '{$username}' 
    OR t1.pm_author = '{$username}' 
   AND t1.pm_id = t2.pm_id 
   AND t2.pm_author = '{$username}' 
   AND COUNT(t2.reply_id) > 0) 
   AND t1.deleted = 0

However, I’m getting a grouping error – my guess is its caused by the AND COUNT(t2.reply_id) > 0?

How can I rectify the above query to make it work.

Hope someone can help.

Cheers!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:18:21+00:00Added an answer on May 16, 2026 at 8:18 pm

    The error is because you can’t use an aggregate function (COUNT, MIN, MAX, AVG, etc) in the WHERE clause, without it being inside a subquery. Only the HAVING clause allows you to use aggregates without being wrapped in subqueries.

    But checking for replies to be more than zero is not necessary on an INNER JOIN – that guarantees that there will be at least one reply associated to the fb_user_pms record. The JOIN also means that the information in t1 will be duplicated for every supported record in fb_user_pm_replies. IE: If a fb_user_pms record has three fb_user_pm_replies records related to it, you’ll see the fb_user_pms record in the result set three times.

    The query you want to use is:

    SELECT t1.pm_id 
      FROM fb_user_pms AS t1 
     WHERE t1.pm_id = '{$pm_id}' 
       AND '{$username}' IN (t1.profile_author, t1.pm_author)
       AND t1.deleted = 0
       AND EXISTS(SELECT NULL
                    FROM fb_user_pm_replies AS t2 
                   WHERE t2.pm_id = t1.pm_id
                     AND t2.pm_author = '{$username}')
    

    The EXISTS clause returns true or false, based on the WHERE criteria. It also won’t duplicate t1 results.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Heya, I m new to hibernate. I have to say it really simplifies everything
Heya guys, I have this small script and i need to grep all the
Heya, I'm currently trying to get bltoolkit working in my project. I've added the
Heya, I'm trying to use Mono's SIMD to handle coordinates(X,Y,Z) in my project, but
Heya, I'm creating a menu and was wondering if how i would add a
Heya, I've got some code that I think ought to be working (though I
Heya I get this error message. I've been looking everywhere but I dont know
Suppose I have a UserControl Editor it has a TextBox . It also have
heya! i recently came across this statement larger sobel operators are more stable in
Heya. Finally, after a lot of fiddling, I got a .rc-loaded context menu for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.