multiple inner join in sql code example
Example 1: two inner joins
SELECT
c.*, i.*, a.*
FROM
invoices i
INNER JOIN
client c
ON
i.clientid = c.clientid
INNER JOIN
address a
ON
a.clientid = c.clientid
WHERE
i.id = 21
Example 2: How to use multiple join in mysql
SELECT
t1.name name,
t1.id id,
t1.add_date add_date,
t2.soc_township township_name1,
t2.soc_name soc_name,
t3.name township_name
FROM block t1
INNER JOIN society t2
ON (t1.soc_id = t2.id)
INNER JOIN township t3
ON (t2.soc_township = t3.id)