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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:01:55+00:00 2026-05-11T01:01:55+00:00

I currently working on an issue tracker for my company to help them keep

  • 0

I currently working on an issue tracker for my company to help them keep track of problems that arise with the network. I am using C# and SQL.

Each issue has about twenty things we need to keep track of(status, work loss, who created it, who’s working on it, etc). I need to attach a list of teams affected by the issue to each entry in my main issue table. The list of teams affected ideally contains some sort of link to a unique table instance, just for that issue, that shows the list of teams affected and what percentage of each teams labs are affected.

So my question is what is the best way to impliment this ‘link’ between an entry into the issue table and a unique table for that issue? Or am I thinking about this problem wrong.

  • 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. 2026-05-11T01:01:56+00:00Added an answer on May 11, 2026 at 1:01 am

    What you are describing is called a ‘many-to-many’ relationship. A team can be affected by many issues, and likewise an issue can affect many teams.

    In SQL database design, this sort of relationship requires a third table, one that contains a reference to each of the other two tables. For example:

    CREATE TABLE teams (   team_id INTEGER PRIMARY KEY   -- other attributes );  CREATE TABLE issues (   issue_id INTEGER PRIMARY KEY   -- other attributes );  CREATE TABLE team_issue (   issue_id INTEGER NOT NULL,   team_id INTEGER NOT NULL,   FOREIGN KEY (issue_id) REFERENCES issues(issue_id),   FOREIGN KEY (team_id) REFERENCES teams(team_id),   PRIMARY KEY (issue_id, team_id) ); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The company I'm currently working for is using Selenium for Uniting-Testing our User Interface.
I'm currently working on creating a new C# project that needs to interact with
I'm currently working at a small web development company, we mostly do campaign sites
I'm currently working on an internal sales application for the company I work for,
I am currently working on a project and my goal is to locate text
I am currently working on a project with specific requirements. A brief overview of
The system I am currently working on requires some role-based security, which is well
We are currently working in a private beta and so are still in the
I'm currently working on an application with a frontend written in Adobe Flex 3.

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.