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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:33:30+00:00 2026-06-10T10:33:30+00:00

basically im just trying to finish off a project im working on, having a

  • 0

basically im just trying to finish off a project im working on, having a little trouble finding the right syntax to use for this SQL statement.

Basically what i have two different tables:

Customer:
companyid
companyname
etc etc.

Machine:
machineid
model
serial
companyid

Now usually this would be easy as i would just join the companyid, however, i need to do this slightly differently this time. I need to return specific data from the tables of customer using the customers id to search, and specific data from the tables of machine, using the machine id to search.

Im pretty tired so i do apologise if the answer is staring me straight in the face, but heres what i was working on, again i know its more than likely wrong so i am sorry i have tried searching but to no avail:

$customerquery = mysql_query("
            SELECT customer.companyid, customer.companyname, 
                   customer.companyaddress, customer.postcode, 
                   customer.telephone, customer.mobile, 
                   machine.machineid, machine.model, 
                   machine.serial 
            FROM customer, machine 
            WHERE customer.companyid=$customerid AND 
                  machine.machineid=$machineid
            ");

Any help would be greatly appreciated,
Thankyou!

  • 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-06-10T10:33:31+00:00Added an answer on June 10, 2026 at 10:33 am

    Your current query produces cartesian product since you miss the condition on where the tables should be joined. This is an old syntax of join (SQL-89)

    SELECT customer.companyid, customer.companyname, 
           customer.companyaddress, customer.postcode, 
           customer.telephone, customer.mobile, 
           machine.machineid, machine.model, 
           machine.serial 
    FROM   customer, machine 
    WHERE  customer.companyid = $customerid AND 
           machine.machineid = $machineid AND
           customer.companyid = machine.companyid -- you missed this one producing
                                                  -- cartesian product
    

    New syntax of join (SQL-92)

    SELECT customer.companyid, customer.companyname, 
           customer.companyaddress, customer.postcode, 
           customer.telephone, customer.mobile, 
           machine.machineid, machine.model, 
           machine.serial 
    FROM   customer INNER JOIN machine 
              ON customer.companyid = machine.companyid 
    WHERE  customer.companyid = $customerid AND 
           machine.machineid = $machineid
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a very noob question. I'm basically just trying to run the hello
I'm trying to write a very lightweight build script which will basically just get
Is there an easy (therefore quick) way to accomplish this? Basically just take some
im getting a EXC_BAD_ACCESS error on this line. [(CCMenuItemSprite*)[profileSelectionMenu getChildByTag:333] setNormalImage:normalSprite3]; Basically im just
I am trying to subclass the android.os.AsyncTask class generically. I basically just want to
I am trying to build a rails app that's basically just a text-editor (with
Basically, Im just trying out a very simple collision test for another program Im
I'm trying to find the equivalent of PropertyInfo.AddValueChanged for FieldInfo. I basically just need
I'm basically just trying to add a couple properties to a button to store
This is basically just to help me understand pointers better, so if you guys

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.