Created
December 11, 2020 00:37
-
-
Save fandrefh/63e296572d3e3396ba0038ae3c9df77c 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 m.id as matricula, a.nome as aluno, c.nome as curso, m.data_matricula as data_matricula | |
from matricula as m left join aluno as a on m.aluno_id = a.id | |
left join curso as c on m.curso_id = c.id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment