I have the following query
SELECT IdentificadorAutomovil, Automovil.Titulo, Automovil.Precio, Automovil.Anio, Automovil.Kilimetros, Automovil.Ubicacion, Imagenes.Imagenes
FROM Automovil INNER JOIN Imagenes
ON Automovil.IdentificadorAutomovil = Imagenes.Automovil
But I'd like you to only return 1 pair for Automobile Identifier, and I can not achieve this,