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

  • Home
  • SEARCH
  • 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 9202215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:12:08+00:00 2026-06-17T23:12:08+00:00

I got an question about mysql. Is it possible to check if an row

  • 0

I got an question about mysql. Is it possible to check if an row exists in an external table?
For example, I need to show recent uploaded images and I would like to show some userdata with it and show if the user is online.

My current query is:

SELECT `users`.`username`, `users`.`location`, `users`.`age`, `users`.`dateofbirth`
FROM (`images`)
JOIN `users` 
  ON `users`.`userid` = `images`.`userid`
WHERE `images`.`active` =  1
LIMIT 12 

But I’m missing the ‘is online’ part. Is it possible to use this in the select? For example if the row exists there would be a value in the select named online and it’s value = 1 and if user is not online (no row in table) the value needs to be 0. Is that possible?

  • 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-17T23:12:10+00:00Added an answer on June 17, 2026 at 11:12 pm

    Seems like you just need to use a LEFT JOIN on the other table and then a CASE to provide the value:

    SELECT `users`.`username`, 
      `users`.`location`, 
      `users`.`age`, 
      `users`.`dateofbirth`,
      case when o.`userid` is null then 0 else 1 end UserOnline
    FROM (`images`)
    JOIN `users` 
      ON `users`.`userid` = `images`.`userid`
    left join online_table o
      on `users`.`userid` = o.`userid`
    WHERE `images`.`active` =  1
    LIMIT 12 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i've got a question about how is it possible (if possible :) to use
I have around 100thousand rows in a mysql table, where each row has about
I asked a question earlier about extracting data from two table and got a
I've for a mysql optimize question about using CONCAT in a JOIN. I've got
I got question about log4net is it working on IIS 7,5? I read lot
I've got question about wpf xaml style definitions. When I try to set style
i got a question about unsigned char array. How can i store an integer
I got a question about good practice. I'm making a simple game and, I'm
i've got a question about the tables and stored procedures which are created by
I've got a question about SimpleDateFormat class and the java.util.Date's compareto method: I'm constructing

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.