Can you join 3 tables in mysql?
It is possible to use multiple join statements together to join more than one table at the same time. To do that you add a second INNER JOIN statement and a second ON statement to indicate the third table and the second relationship.
Can you cross join 3 tables in SQL?
SQL Server CROSS JOIN Tutorial
The CROSS JOIN is used to show every possible combination between two or more sets of data. You can do a cross join with more than 2 sets of data.