Mysql – How to put where clauses in an inner join clause?
I am joining a few tables and in each join, I have to specify a specific condition. SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id WHERE table2.column1 = 'horse' INNER JOIN table3 ON table2.id = table3.id WHERE…