let\'s say i have three tables, each one relates to another,
when i need to get a column from each table, does it make difference how to organize the (inner joins)??
For most queries, order does not matter.
That said...
The inner join
operation has left to right associativity. It doesn't matter much in which order you write the tables, as long as you don't refer to any tables in the ON condition before they have been joined.
When the statement is executed the database engine will determine the best order to execute the join and this may be different from the order they appear in the SQL query.