Created
July 8, 2014 15:52
-
-
Save montogeek/ea0d32aea1d7693615fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select referencias.titulo, autores.nombre, autores.apellido | |
from referencias | |
join autor_referencia on referencias.id = autor_referencia.referencia_id | |
join autores on autor_referencia.autor_id = autores.id | |
order by autores.apellido asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
select referencias.titulo, autores.nombre, autores.apellido
from referencias,autor_referencia,autores
where referencias.id = autor_referencia.referencia_id and
autor_referencia.autor_id = autores.id
order by autores.apellido asc