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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:38:10+00:00 2026-05-28T05:38:10+00:00

I wish to use a join across some tables but am having some difficulty

  • 0

I wish to use a join across some tables but am having some difficulty finding a solution.

Take this SQL (stripped down):

SELECT
*
FROM project_contacts c
LEFT JOIN projects p ON c.project=p.ID
LEFT JOIN project_contact_type ON people.project_contact_type=project_contact_type.ID
LEFT JOIN people ON c.person=people.ID
WHERE p.live = 1
ORDER by p.code
LIMIT 4;

returns the error:

Unknown column ‘people.project_contact_type’ in ‘on clause’

From the line:
LEFT JOIN project_contact_type ON people.project_contact_type=project_contact_type.ID

which is the issue, ‘people.project_contact_type’ is found based on the ‘people’ table and not the ‘project_contacts’ table which is the one where the other joins are off, if that makes sense??

So I don’t know how to do a join inside of another join if thats even what I’m trying to do 😉 …

  • 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-28T05:38:11+00:00Added an answer on May 28, 2026 at 5:38 am

    Order of the joins matters: the system doesn’t know about the people, so it needs to be 2nd in your list.

    SELECT
    *
    FROM project_contacts c
    LEFT JOIN projects p 
      ON c.project=p.ID
    LEFT JOIN people 
     ON c.person=people.ID
    LEFT JOIN project_contact_type 
      ON people.project_contact_type=project_contact_type.ID
    WHERE p.live = 1
    ORDER by p.code
    LIMIT 4;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wish to use scribe to export some data from a Erlang application, but
I wish to use the Translator classes of Zend framework in my app, but
I have two stored procedures I wish to use in my stored procedure, but
When you have parent-child tables and you wish to use a DetailsView to edit
I'm developing an app and I wish use the UIImagePickerController but I wish let
I wish to use Wikipedia api to extract the result of this page: http://en.wikipedia.org/wiki/Special:PrefixIndex
I wish to use QtWebKit to load a url for display, but, that's the
I have a XLL Addin (Test.xll). I wish to use this in my C#
I wish use a uisegmentedcontrol in my app with 3 segments but not with
I wish to use this method like @results = Candidate.all.match_against(options) , where options is

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.