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

The Archive Base Latest Questions

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

I have two tables: id 1 2 3 4 t1 AND t2 id |

  • 0

I have two tables:

id
1
2
3
4

t1 AND t2

id | related_id
1  | 2
1  | 3

Where t2 is relationship table between t1 records. What is the best way to get desired output?

t1.id | t1_copy.id
1     | NULL -- want to get this NULL row
1     | 2
1     | 3

Simple JOIN would almost work, however it doesn’t give me the first NULL row.

SELECT t1.id, t1_copy.id FROM t1
LEFT JOIN t2 ON t1.id = t2.id
LEFT JOIN t1 t1_copy ON t1_copy.id = t2.related_id
WHERE t1.id = 1

P.S: Yes, I do realize that desired output is wacky.

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

    Seems like a simple UNION should do the trick

    SELECT
       id, 
       null as copy_id
    FROM
       t1 
    WHERE
      exists (select * from t2 where t1.id = t2.id)
    UNION ALL
    SELECT
       t1.id,
       t2.related_id
    FROM
       t1 
       INNER JOIN t2
       ON t1.id = t2.id
    

    SQL Fiddle

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

Sidebar

Related Questions

In MySQL, I have two tables with a 1:n relationship. Table items has products,
I have a relationship between two tables. The two tables PKs are int types.
I have a 3-table schema. Two of the tables (Trade/Portfolio) have a 1:1 relationship,
I have two tables that are related via a mapping table: keywords titles I
I am learning the Model relationship types in cakephp. I have built two tables
I have two simple tables as described here... Table = Person PersonID (int, PrimaryKey)
I have two tables: Table A ID ABC_ID VAL Table B ID ABC_ID VAL
I have two models Property and Amenity the relationship between them is many to
I have two tables that are related to each other in a 1-1 relationship
Suppose I have two tables in one to many relationship. And, I want to

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.