tengo los 3 siguientes tablas en una base de datos MySQL 4.x: hosts: (300.000 registros) id (UNSIGNED INT) PRIMARY KEY nombre (VARCHAR 100) caminos: (6.000.000 registros) id (UNSIGNED INT) PRIMARY KEY
Tengo una consulta que tiene 7 uniones internas (porque mucha de la información se distribuye en otras tablas), algunos compañeros de trabajo se han sorprendido. Me preguntaba si deberían sorprenderse
Tanto estas uniones me dará los mismos resultados: SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK
vs SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK
¿Hay alg