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

  • Home
  • SEARCH
  • 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 3854302
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T17:36:09+00:00 2026-05-19T17:36:09+00:00

Ok, so I am dealing with 4 tables here – Project, Members, Iterations and

  • 0

enter image description hereOk, so I am dealing with 4 tables here – Project, Members, Iterations and ProjectIterationMembers. When I create new project details, I am writing them to the Project table and I am also specifying an iteration (start date, end date – a project consists of at least one iteration, but more iterations can be added afterwards). Members from the Members table are now written to the ProjectIterationMembers table as they are assigned to iterations.

What I am trying to do is display project details in a datagridview in this format:

Project Name | Project Manager | Project Status

Project A    | Person A | In Progress
Project B    | Person B | In Progress

However, my output is this for some reason when I add a new project or new iterations:

Project Name | Project Manager | Project Status

Project A    | Person A | In Progress
Project A    | Person B | In Progress
Project B    | Person A | In Progress
Project B    | Person B | In Progress

Here is my sql statement and thanks for your help:

SELECT
    DISTINCT(Project.ProjectName), 
    Project.ProjectID, 
    Project.Status, 
    Project.CompanyID, 
    Project.StartDate, 
    m.MemberID, 
    m.FirstName + ' ' + m.LastName AS ProjectManager
FROM
    Project, 
    Member m, 
    ProjectIterationMember
WHERE
    m.CompanyRole = 'Project Manager'
    AND Project.CompanyID = '" + co_id + "'
    AND m.MemberID = ProjectIterationMember.MemberID
ORDER BY
    Project.StartDate DESC
  • 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-19T17:36:09+00:00Added an answer on May 19, 2026 at 5:36 pm

    As far as i see from your sql, you are probably missing a join between tables Project and ProjectIterationMember and you get cartesian join.

    I can’t help you more then this since i have no idea what your ER diagram or at least table definitions look like.

    edit: from your ERD, here is how from and where should look like:

    FROM Project, Member m, ProjectIterationMember, ProjectIterationID pid 
    WHERE m.CompanyRole = 'Project Manager'
      AND Project.CompanyID = '" + co_id + "'
      AND m.MemberID = ProjectIterationMember.MemberID
      AND pid.projectIterationID=ProjectIterationMember.ProjectIterationID
      AND pid.ProjectID=Project.ProjectID`
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've a problem with database, and here is a scenario I'm dealing with every
I'm currently developing a heavily multi-threaded application, dealing with lots of small data batch
I was reading the Android SQLite NotePad tutorial that referenced creating a DB Adapter
I would like to build a web interface to present logdata. This should be
Consider, please this setup for a database backed application. ( in my case DB
I want to use CSS to set a color of the outer border of
So I'm having a problem and I can't think of a fix for it.
I am building a portfolio website using CakePHP and have named my model 'Portfolio'
I have a stored procedure which deals with adding nodes in a tree. Basically
I'm working on updating a system that stores financial information and am using a

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.