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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:56:21+00:00 2026-05-15T11:56:21+00:00

I have some tables with the same structure and I want to make a

  • 0

I have some tables with the same structure and I want to make a select in a group of them.

Rather than just making a loop to all of those tables, I would like to put a subquery after the FROM of the main query.

Is it possible or it will fail?

Thanks!

(Using Oracle)


Additional info: I don’t have the name of the table right away! They’re stored in another table. Is it possible to have a subquery that I could put after the FROM of my main 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-15T11:56:21+00:00Added an answer on May 15, 2026 at 11:56 am

    “I don’t have the name of the table
    right away! They’re stored in another
    table”

    Oracle doesn’t do this sort of thing in SQL. You’ll need to use PL/SQL and assemble a dynamic query.

    create or replace function get_dynamic_rows
        return sys_refcursor
    is
        stmt varchar2(32767) := null;
        return_value sys_refcursor;
    begin
        for r in ( select table_name from your_table ) 
        loop
            if stmt is not null then
               stmt := stmt||' union all ';
            end if;
            stmt := stmt||'select * from '||r.table_name;
        end loop;
        open return_value for stmt;
        return return_value;
    
    end;
    /
    

    This will assemble a query like this

    select * from table_1 union all select * from table_2
    

    The UNION ALL is a set operator which combines the output of several queries in a single result set without removing duplicates. The columns in each query must match in number and datatype.

    Because the generated statement will be executed automatically there’s no real value in formatting it (unless the actual bits of the query are more complicated and you perhaps need to debug it).

    Ref Cursors are PL/SQL contructs equivalent to JDBC or .Net ResultSets. Find out more.

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

Sidebar

Related Questions

I have some tables that represent various types. They usually just consist of an
I have some nested tables that I want to hide/show upon a click on
I have a Linux web server and I'd like to make some database tables
I have some tables that I build as a part of my report rollup.
I'm looking at building a Rails application which will have some pretty large tables
I basically created some tables to play around with: I have Two main tables,
I've never used the Global Temporary Tables however I have some questions how they
I have a huge database with some 100 tables and some 250 stored procedures.
I have been researching audit triggers for some of my sql tables. I came
I have the following code: ListBox.DataSource = DataSet.Tables(table_name).Select(some_criteria = match) ListBox.DisplayMember = name The

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.