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
| ############################## | |
| ## Java | |
| ############################## | |
| .mtj.tmp/ | |
| *.class | |
| *.jar | |
| *.war | |
| *.ear | |
| *.nar | |
| hs_err_pid* |
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
| --*Primeira consulta: | |
| SELECT tb_curso.nome AS curso, tb_turma.numero AS turma, tb_turma.inicio AS inicio | |
| FROM tb_curso | |
| INNER JOIN tb_turma ON tb_turma.curso_id = tb_curso.id | |
| --*Segunda consulta: | |
| SELECT tb_curso.nome AS nome, tb_turma.numero AS turma, tb_aluno.nome AS aluno, tb_aluno.cpf AS cpf | |
| FROM tb_curso |