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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:04:15+00:00 2026-06-13T23:04:15+00:00

I have about 9 tables that contain the same type of field. I would

  • 0

I have about 9 tables that contain the same type of field. I would like to combine the 9 of them FIRST, and then get the distinct count of unique values in that combined column. This is what I’ve tried so far, but to no avail. I’m not also not sure this is the most efficient way to return this value?

SELECT COUNT(DISTINCT aircraft_id) FROM 
(
SELECT aircraft_id FROM database.a_message UNION ALL
SELECT aircraft_id FROM database.b_message UNION ALL
SELECT aircraft_id FROM database.c_message UNION ALL
SELECT aircraft_id FROM database.d_message UNION ALL
SELECT aircraft_id FROM database.e_message UNION ALL
SELECT aircraft_id FROM database.f_message UNION ALL
SELECT aircraft_id FROM database.g_message UNION ALL
SELECT aircraft_id FROM database.h_message UNION ALL
SELECT aircraft_id FROM database.i_message
) ;
  • 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-13T23:04:16+00:00Added an answer on June 13, 2026 at 11:04 pm
    SELECT DISTINCT aircraft_id,count(aircraft_id) FROM 
    (
    SELECT aircraft_id FROM database.a_message UNION ALL
    SELECT aircraft_id FROM database.b_message UNION ALL
    SELECT aircraft_id FROM database.c_message UNION ALL
    SELECT aircraft_id FROM database.d_message UNION ALL
    SELECT aircraft_id FROM database.e_message UNION ALL
    SELECT aircraft_id FROM database.f_message UNION ALL
    SELECT aircraft_id FROM database.g_message UNION ALL
    SELECT aircraft_id FROM database.h_message UNION ALL
    SELECT aircraft_id FROM database.i_message
    ) group by aircraft_id;
    

    or

    select aircraft_id,count(aircraft_id)
    (
    SELECT DISTINCT aircraft_id FROM 
    (
    SELECT aircraft_id FROM database.a_message UNION ALL
    SELECT aircraft_id FROM database.b_message UNION ALL
    SELECT aircraft_id FROM database.c_message UNION ALL
    SELECT aircraft_id FROM database.d_message UNION ALL
    SELECT aircraft_id FROM database.e_message UNION ALL
    SELECT aircraft_id FROM database.f_message UNION ALL
    SELECT aircraft_id FROM database.g_message UNION ALL
    SELECT aircraft_id FROM database.h_message UNION ALL
    SELECT aircraft_id FROM database.i_message
    )
    ) group by aircraft_id;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables, A and B, that have the same structure (about 30+
I have two tables: a schedule table that contains information about how an employee
I have a table that looks like this for about ~30 students: StudentID Course*
I have about 100 tables where all of them have duplicate foreign key constraints
I have just learnt about temporary tables and using them has given me some
I have a mysql MyISAM table with many rows that contain information about places,
I have about 40000 records in that table that contains plain text and within
I have a table that contains all the data about users . Users can
I have a MySQL table with about 5,000,000 rows that are being constantly updated
I have a flow layout. Inside it I have about 900 tables. Each table

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.