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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:23:19+00:00 2026-05-12T00:23:19+00:00

Lets say I have data in two tables. In one I have Order ID

  • 0

Lets say I have data in two tables. In one I have Order ID and Order Date. In the other I have Order ID, Description and Value. I know how to do simple SELECTs but what would I use to output something like this?

Order ID | Order Date | Description                     | Value
1234     | 10/07/2009 |                                 |
         |            | Orderline description goes here | 53.49
         |            | Orderline description goes here | 25.63
         |            | Orderline description goes here | 21.64
12345    | 11/07/2009 |                                 |
         |            | Orderline description goes here | 12.37
         |            | Orderline description goes here | 13.86
         |            | Orderline description goes here | 17.79
  • 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-12T00:23:19+00:00Added an answer on May 12, 2026 at 12:23 am

    Supposing you maintain a foreign key constraint between TABLE1 and TABLE2 on ORDER_ID field….

    SELECT t1.ORDER_ID as [ORDER ID],
           t1.ORDER_DATE as [ORDER DATE],
           t2.DESCRIPTION,
           t2.VALUE
    FROM 
           TABLE1 t1 INNER JOIN TABLE2 t2 ON
                  t1.ORDER_ID = t2.ORDER_ID
    

    Then on the GUI ignore the repeating values…

    OR you can take UNIONS…

    SELECT ORDER_ID as [ORDER ID],
           ORDER_DATE as [ORDER DATE],
           NULL as DESCRIPTION,
           NULL as VALUE
    FROM TABLE1
         ORDER BY ORDER_ID
    
    UNION ALL
    
    SELECT NULL as [ORDER ID],
           NULL as [ORDER DATE],
           DESCRIPTION,
           VALUE
    FROM TABLE2
         ORDER BY ORDER_ID
    

    but you still have to do few thing on the GUI.

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

Sidebar

Related Questions

Let's say I have two strings: one is XML data and the other is
Lets say I have two tables, one for transactions, and another table who's primary
Let's say I have two databases with identical tables, but one database's tables contains
Let's say I have two tables of similar structure, but one is empty and
I have two tables: entreprises(id, name) entreprises_struct(id,entreprise_id, entreprise_child_id) let's say i have these data:
For example, say I have two tables, Product and Order . Product has ID
I have two MySQL tables say A and B. A contains just one varchar
lets say I have a list like so: ['one','two','three','four','five','six','seven','eight','nine'] and I want to experiment
Let's say I have two tables employee and salary with a 1:N relationship (one
Let's say I've got two tables: one with customer data, one with location data.

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.