Jump to content

[SOLVED] MySQL Inner Join Not Working


cheechm

Recommended Posts

I think you'll need group the results by the matching column.

 

Eg

SELECT q.qid, q.cid, q.status, c.name, c.company FROM quote AS q INNER JOIN customers AS c USING (cid) WHERE q.cid = 128 GROUP BY q.cid

 

Moved to MySQL Help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.