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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T17:51:57+00:00 2026-06-01T17:51:57+00:00

I have 2 tables browsers and votes. I need all the browsers and only

  • 0

I have 2 tables “browsers” and “votes”. I need all the browsers and only the votes by a vote_ranking and a user_id. Sometimes there is no votes but i still need the browsers.
That’s the code i wrote:

SELECT browsers.*, votes.*
FROM browsers LEFT JOIN votes ON browsers.app_id = votes.app_id
WHERE vote_ranking = '$ranking' AND user_id = $userid or vote_id IS NULL

The problem is when there is no votes (vote_id IS NULL) the app_id is changed to NULL. But i need to keep the browsers app_id even there’s no app_id in votes.

Can i join the table votes only on rows where the’re is a vote_id ? Or anything similar to do what i need ?

Thanks

  • 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-01T17:51:59+00:00Added an answer on June 1, 2026 at 5:51 pm

    Try this:

    SELECT browsers.*, votes.vote_ranking, votes.user_id
    FROM browsers
    LEFT JOIN votes
      ON browsers.app_id = votes.app_id
      AND vote_ranking = '$ranking' 
      AND user_id = $userid
    

    This way, a corresponding record from votes will be joined only if it has appropriate vote_ranking. Otherwise there will be NULLs, but you will still keep the data from browsers.

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

Sidebar

Related Questions

Our client's request is to have tables in PDF with rounded corner. I only
I have many tables that use Lookup/Enum references for most of their column values.
I have 5 tables: customers id - name p_orders id - id_customer - code
I have a table that I need to render some vertical text in one
I have 2 tables: users and log. Currently my query looks like that. $stmt
I have a page layout that is based on tables, and as much as
I have a table inside a hyperlink: <a href=/><table><tr><td>...</td></tr></table></a> In all browsers, hovering over
I have two tables next to each other and problem is that I want
How do I lock mysql tables in php? I currently have this code: $db->query(LOCK
There is a world of suggestions on forums about this but none have shown

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.