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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:01:48+00:00 2026-05-23T08:01:48+00:00

I have a table where all comments are stored. Some comments are questions, other

  • 0

I have a table where all comments are stored. Some comments are questions, other – answers.
So, my table looks like this:

id  parent_id   message is_answer   answered
1   0           2x2     0           1
2   1           4       1           0
3   0           5x9     0           0
4   1           2x9     0           0
5   1           2x8     0           1
6   5           16      1           0

And as a result I’d like to get this table:

q_id    q_message   q_answer 
1       2x2         4
3       5x9         NULL 
4       2x9         NULL
5       2x8         16

So, I’d like to get all questions and answers to them, if they exist.

  • 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-23T08:01:49+00:00Added an answer on May 23, 2026 at 8:01 am

    There is nothing that prevents you from joining a table to itself.

    SELECT q.id AS q_id, q.message AS q_message, a.message AS q_answer
    FROM table AS q
    LEFT JOIN table AS a ON a.parent_id = q.id
    WHERE q.is_answer = 0;
    

    Note that this does not quite give the output you said you want… because it shows all answers to the question:

    +------+-----------+----------+
    | q_id | q_message | q_answer |
    +------+-----------+----------+
    |    1 | 2x2       | 4        | 
    |    1 | 2x2       | 2x9      | 
    |    1 | 2x2       | 2x8      | 
    |    3 | 5x9       | NULL     | 
    |    4 | 2x9       | NULL     | 
    |    5 | 2x8       | 16       | 
    +------+-----------+----------+
    6 rows in set (0.00 sec)
    

    Your requested output only shows the answer “4” for question 1. I’m not sure if that was intentional on your part–if so, you’ll need some additional GROUP BY, or other logic, to filter out the answers you do not want displayed.

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

Sidebar

Related Questions

I have a Pages table that stores all my view urls and this table
I have a table with all U.S. zip codes. each row contains the city
I have a table that stores all the volunteers, and each volunteer will be
I have a table that was imported as all UPPER CASE and I would
I have a table (venues) that stores all the possible venues a volunteer can
I have a User table that has all of their avatars saved in an
Can a fact table have no keys at all? or if it can, is
I have a table (participants) which has multiple columns that could all be distinct.
All rows in a table have a type field which is either 0 or
I have a table that has redundant data and I'm trying to identify all

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.