Jump to content

Mulitple INNER JOIN's


pengu

Recommended Posts

Hello all, haven't posted for a while.

 

I did a quick search on this and found it for MySQL.

 

So I want to do something like..

 


SELECT table1.id, table1.info, table2.description, table3.example FROM table1 INNER JOIN table2 ON table1.id = table2.id

 

That much works, but not sure how to or if it is even possible to do another INNER JOIN.

 

Thank you for help!

Link to comment
https://forums.phpfreaks.com/topic/189376-mulitple-inner-joins/
Share on other sites

Bah.. this is what I did, the 'AS' is not needed, right?  It's just a mask for table name sort of thing?

 

Thanks for response anyways.

 

Yes it's optional, it aliases the table, so that you don't have to spell out the full table name all the time.  There are also times when you require an alias -- namely when you are joining a table to itself.

Link to comment
https://forums.phpfreaks.com/topic/189376-mulitple-inner-joins/#findComment-999753
Share on other sites

Also if you're joining a subquery rather than actual table, you have to give it an alias.

 

SELECT
  t1.ID, t1.field1,
  sq.field2, sq.field3
FROM
  table1 AS t1
INNER JOIN (
  SELECT
     ID, field2, field3
  FROM
    someOtherTable
  WHERE
    someCondition = TRUE
) AS sq
ON
  t1.ID = sq.ID

Link to comment
https://forums.phpfreaks.com/topic/189376-mulitple-inner-joins/#findComment-999763
Share on other sites

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.