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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:42:47+00:00 2026-05-11T17:42:47+00:00

My database has 7 tables: one is the parent (feeds) and the other 3

  • 0

My database has 7 tables: one is the parent (feeds) and the other 3 are the children (public feeds, private feeds, generated feeds) of an isA relationship. There is a table “subscriptions” with a foreign key on the feeds table. Each user can subscribe a feed of any type. The problem is that the view for each type of feed is different, that means I need to generate different links for each type of feed subscribed. Under the current scheme I need to perform 3 queries to get the type of the feed from the feed id. Is there a better solution to this problem?

  • 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-11T17:42:48+00:00Added an answer on May 11, 2026 at 5:42 pm

    You could use a view to pre-join the children to the parents, and to get a consistent result regardless of which child type. For example:

    create view feed_links as
    select f.feed_name
    ,      case f.feed_type
                when 'public' then pub.x + pub.y
                when 'private' then pri.z
                when 'generated' then gen.v + gen.w
                end as link
    from   feeds f
    left outer join public_feeds pub on pub.feed_id = f.feed_id
    left outer join private_feeds pri on pri.feed_id = f.feed_id
    left outer join generated_feeds gen on gen.feed_id = f.feed_id
    where ...;
    

    Or if your feeds table doesn’t have a feed_type column (or equivalent):

    create view feed_links as
    select f.feed_name
    ,      case when pub.feed_id is not null then pub.x + pub.y
                when pri.feed_id is not null then pri.z
                when gen.feed_id is not null then gen.v + gen.w
                end as link
    from   feeds f
    left outer join public_feeds pub on pub.feed_id = f.feed_id
    left outer join private_feeds pri on pri.feed_id = f.feed_id
    left outer join generated_feeds gen on gen.feed_id = f.feed_id
    where ...;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an identifying relationship between two tables in the database. The parent table
One of my tables in my SQL database has a growth rate of two
One of the tables in my database has three columns. They are dt_id (PK),
I recently inherited a database on which one of the tables has the primary
I have an existing database in mysql. One of my tables has discontinuous ids.
I have a poorly designed database. One of the most important tables has 11,000+
I have a ms access database that has one table for each photo album
I am using SQLite Database and in one my table has field purchased_date (TEXT
I have a SQL Mobile database with one table. It has several columns with
I have a relational database with about 100 tables. Each table has unique, numerical,

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.