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 8531217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:25:59+00:00 2026-06-11T09:25:59+00:00

I need to join these 2 tables Table 1: wp_usermeta, where I am storing

  • 0

I need to join these 2 tables

  • Table 1: wp_usermeta, where I am storing my users’ last logged in time
  • Table 2: wp_chats, where am storing chats between users

This query grabs the logged in user and counts the chats from that user to the current user. However it will not return a logged in user if there are no chats from that user.

How can I make this query return all logged in users even when there are no chats?

SELECT m.user_id, COUNT(c.from_id) as cnt 
FROM wp_chats c 
JOIN wp_usermeta m  ON  m.user_id=c.from_id
WHERE m.meta_key='user_last_login' 
 AND m.meta_value>=$time 
 AND c.to_id=$from_id 
 AND c.received=0 
GROUP BY c.from_id;

http://sqlfiddle.com/#!2/edc6b/1

Users 2,3,4,5,6 are all logged in and should be in the output. User 7 in not logged in and does not appear.

Only 3, 6 are showing up however. How can i get all but #7 to be in the output?

  • 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-06-11T09:26:00+00:00Added an answer on June 11, 2026 at 9:26 am

    EDIT perfected query in fiddle http://sqlfiddle.com/#!2/edc6b/12

    SELECT m.user_id, COUNT(c.from_id) as cnt 
    FROM wp_usermeta m
    LEFT JOIN wp_chats c   
      ON  m.user_id=c.from_id
      AND c.received=0
      AND c.to_id=2
    WHERE m.meta_key='user_last_login' 
    AND m.meta_value>=1347305273               
    GROUP BY m.user_id;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 tables I need to join. The contracts table is the main
I have 3 tables that I need to join, these join together fine using
I have three tables one of this storing users basic information, the other one
I need to join two tables from different MySQL (PHP) connection strings and different
I have a table with more than 100 columns. I need to join it
I need help regarding JOIN tables to get category name & author name from
Need some help joining these two tables I have two views that looks like
I have two tables I need to join together and I'm unsure how to
In the below code I have two tables. I join these, perform a GROUP
I have these tables: users ----- id INT name VARCHAR(20) email VARCHAR(40) user_fans ----------

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.