Dear Friends,
I have three tables where a field called Registro exists on two of them.
This select Works fine in Access:
"SELECT * FROM PRESTAMOS, LIBROS, LECTORES WHERE PRESTAMOS.REGISTRO = LIBROS.REGISTRO AND PRESTAMOS.REG_USUARI = LECTORES.REG_USUARI" )
Access converts first REIGSTRO from PRESTAMOS Table as PRESTAMOS.REGISTRO.
The same with REGISTRO at LIBROS Table, converted as LIBROS.REGISTRO.
But MySQL does not do such conversión. The resulting Recordset has a field REGISTRO twice.
How can I forcé MySQL to work the same as Access please?:
Thank you very much.