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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:15:10+00:00 2026-05-26T14:15:10+00:00

I have two tables with identical structures handling distinct data. I want to merge

  • 0

I have two tables with identical structures handling distinct data. I want to merge them, add a text field indicating where the data for that row came from, and order by a common field.

TABLE1

ID|NAME|YEAR  

1,'peter',2008
2,'edward',2010

TABLE2

ID|NAME|YEAR

1,'compadre',2009
2,'vika',2011

DRAFT of query ( obviously is erroneous )

select * from TABLE1 JOIN TABLE2 order by YEAR asc

expected result:

1,'peter','iamfromTABLE1',2008
1,'compadre','iamfromTABLE2',2009
2,'edward','iamfromTABLE1',2010
2,'vika','iamfromTABLE2',2011

I know I can do this using PHP/MySQL, but is there not a more elegant way like the “One Simple Query”.

  • 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-26T14:15:11+00:00Added an answer on May 26, 2026 at 2:15 pm

    Use a Union query and literals:

    SELECT ID, Name, 'iamfromTABLE1' as indicator, Year
    FROM Table1
    UNION
    SELECT ID, Name, 'iamfromTABLE2' as indicator, Year
    FROM Table2
    ORDER BY Year
    

    EDIT: as indicator added on recommendation of iim.hlk

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

Sidebar

Related Questions

I have two tables with one identical column name, but different data. I want
I have two tables TABLE1 and TABLE2 with identical structures. I need a trigger
I have two identical tables in two different databases with the same data but
I have a two tables. values inside them are not identical, but most of
I have two tables that have identical columns. One table houses imported data, the
I have two identical SQL Server tables ( SOURCE and DESTINATION ) with lots
I have two tables on a webform. On a button click I want to
I have two tables almost identical: employee employee_history The second table has two additional
I have two tables in two separate sqlite3 databases. The datatypes are identical, but
I have two identical tables with the same number of rows but with different

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.