we can use 2 inner joins variables in the fiunction, like we did ith other fincvtions so that we can have 2 inner joins so no 3 tables combination with inner join for 3 tables code example
Example: 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