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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:56:50+00:00 2026-05-25T05:56:50+00:00

$logged = $_SESSION[‘logged’]; $construct = SELECT child.* FROM products child LEFT JOIN products parent

  • 0
  $logged = $_SESSION['logged'];

  $construct =  "SELECT child.* 
                 FROM products child 
                 LEFT JOIN products parent on parent.sid=child.sid 
                 WHERE parent.id =
                   '(SELECT productid 
                     FROM subscribed 
                     WHERE username=\"$logged\")' 
                 AND parent.keyword != child.name 
                 ORDER BY child.id DESC";  

I’m having trouble getting the subquery to work i get the wrong results. The parent query is fine because i have used it before.

I want the sub query to get all productids from the table ‘subscribed’ where username=$logged.

This is what i want but in one query, check WHERE clause for differences.

$construct =  "SELECT child.* 
               FROM products child 
               LEFT JOIN products parent on parent.sid=child.sid 
               WHERE parent.id= 
                 'SUB QUERY RESULT 1' 
               AND parent.keyword != child.name 
               ORDER BY child.id DESC"; 

$construct =  "SELECT child.* 
               FROM products child 
               LEFT JOIN products parent on parent.sid=child.sid 
               WHERE parent.id=
                 'SUB QUERY RESULT 2' 
               AND parent.keyword != child.name 
               ORDER BY child.id DESC"; 

$construct =  "SELECT child.* 
               FROM products child 
               LEFT JOIN products parent on parent.sid=child.sid 
               WHERE parent.id=
                 'SUB QUERY RESULT 3' 
               AND parent.keyword != child.name 
               ORDER BY child.id DESC"; 

How do I do this in one query without looping the query. Do I even need a subquery?

  • 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-25T05:56:50+00:00Added an answer on May 25, 2026 at 5:56 am

    You can use an inner join to do what you want:

     $construct = "SELECT child.*         
       FROM products child         
       LEFT JOIN products parent on parent.sid=child.sid         
       INNER JOIN subscibed s ON (s.productid = parent.id) 
       WHERE s.username = '$logged' 
         AND parent.keyword != child.name         
       ORDER BY child.id DESC";  
    

    If you want the three queries join in one do:

    $construct =  "SELECT child.*              
               FROM products child              
                   LEFT JOIN products parent on (parent.sid = child.sid)              
               WHERE parent.id IN             
                     (SELECT productid FROM table1 WHERE username= '$logged'
                    UNION 
                      SELECT productid FROM table2 WHERE something = '$somethingelse'
                    UNION 
                      SELECT productid FROM table3 WHERE otherthing = '$otherstuff'
                     )              
               AND parent.keyword != child.name              
               ORDER BY child.id DESC"; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my php application, I'm using $_SESSION to track whether a user is logged
<?php session_start(); // After user logged in session_regenerate_id(); $_SESSION['logged_in'] = 1; $_SESSION['ip'] = $_SERVER['REMOTE_ADDR'];
Currently when user logged in, i created 2 sessions. $_SESSION['logged_in'] = 1; $_SESSION['username'] =
I used $_SESSION['name'] to handle data from page to page. I mainly used it
I have an website. When the user is logged the session details will loaded.
When you log out of a web app, should ALL your session be logged
I keep a Session variable when the user is logged in. So that when
How do I time out the session a ASP.NET MVC logged in user after
I have some code that gets the current logged in user. userID = request.session.get(_auth_user_id)
Logged into my Windows XP SP2 computer using my normal user account (which has

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.