Skip to content

Instantly share code, notes, and snippets.

View uemerson199's full-sized avatar

Uemerson Ribeiro uemerson199

View GitHub Profile
@uemerson199
uemerson199 / .gitignore Java
Created January 23, 2026 00:58 — forked from dedunumax/.gitignore Java
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*
--*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