I have always had the doubt if it is the same or if it has consequences to make a query of the following forms, or if there is some standard to follow when establishing the order of a join depending on whether or not the table is has the foreign key
__________ ___________
Alumno Escuela
—————— ——————
Id_alumno Id_escuela
Nombre Nombre
Id_escuela ——————
——————
form 1:
Select e.Nombre, a.id_alumno, a.nombre
From escuela e, alumno a
Where a.Id_escuela = e.Id_escuela
Form 2:
Select e.Nombre, a.id_alumno, a.nombre
From alumno a, escuela e
Where e.Id_escuela, a.Id_escuela
And then the same if you were using the reserved word JOIN