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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:47:24+00:00 2026-05-26T09:47:24+00:00

I have 2 tables: Attendee(AttendeeId integer PRIMARY KEY, LastName, FirstName, etc…) Company(CompanyId integer PRIMARY

  • 0

I have 2 tables:

Attendee(AttendeeId integer PRIMARY KEY, LastName, FirstName, etc...)
Company(CompanyId integer PRIMARY KEY, CompanyName, etc ...)

and a many-to-many relation over them:

CompanyAttendeeRelation
(
    CompanyId integer REFERENCES Company (CompanyId),
    AttendeeId integer REFERENCES Attendee (AttendeeId),
    PRIMARY KEY (CompanyId, AttendeeId)
);

So, from the above, a company can have more than one attendee and an attendee can be in more than one company.

However, I’ve tried, for instance:

SELECT   (LastName || " " || FirstName) as AttendeeName,  
         CompanyAttendeeRelation.AttendeeId, 
         CompanyAttendeeRelation.CompanyId 

FROM     Attendee join CompanyAttendeeRelation on CompanyAttendeeRelation.AttendeeId = Attendee.AttendeeId join Company on CompanyAttendeeRelation.CompanyId = Company.CompanyId 

GROUP BY LastName;

But I don’t get all companies for an attendee. That is, for instance, say an attendee with AttendeeId = 15 has a company with CompanyId = 20 and another with CompanyId = 100, I’d expect to get:

Doe John|15|20

Doe John|15|100

But I’m only getting:

Doe John|15|100

So I’m not sure if it is the JOIN that stops on the first match and the second one never gets computed or if somewhere duplicates (in this case for AttendeeId) are getting ignored.

Any ideas?

  • 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-26T09:47:25+00:00Added an answer on May 26, 2026 at 9:47 am

    If you want all the combinations, why would you GROUP BY? Try it without.

    SELECT (LastName || " " || FirstName) as AttendeeName,  
           CompanyAttendeeRelation.AttendeeId, 
           CompanyAttendeeRelation.CompanyId 
    
    FROM   Attendee
    JOIN   CompanyAttendeeRelation ON CompanyAttendeeRelation.AttendeeId = Attendee.AttendeeId
    JOIN   Company on CompanyAttendeeRelation.CompanyId = Company.CompanyId; 
    -- GROUP  BY LastName;
    

    Better yet, for this particular query, you don’t need to join Company at all. So try this:

    SELECT (LastName || " " || FirstName) as AttendeeName,  
           CompanyAttendeeRelation.AttendeeId, 
           CompanyAttendeeRelation.CompanyId 
    
    FROM   Attendee
    JOIN   CompanyAttendeeRelation ON CompanyAttendeeRelation.AttendeeId = Attendee.AttendeeId;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these 2 tables: Course(PK CourseId, Title) and Attendee(PK AttendeeId, FK CourseId, Method).
I have two tables that are joined together. A has many B Normally you
I have tables like Customer , Purchase etc which sometimes have associated documents with
CREATE TABLE Department( DNumber integer NOT NULL PRIMARY KEY); CREATE TABLE Patient( PID integer
There's two tables, attendee , and group . both have a gender field. Each
I have tables like this: tblUsers int UserID string UserName tblUsersInRoles int UserID int
In my database I have tables that define types for example Table: Publication Types
When I have tables in my database that have PK/FK relationships (int) and when
Our client's request is to have tables in PDF with rounded corner. I only
Using MS Access 2007, I am creating a student management database. I have tables

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.