Posts by Eduardo • 16 points
1 post
-
0
votes2
answers89
viewsA: links between tables
You have to join the keys with the table based on what you have in the Registration table: select * from Inscricoes i inner join Aluno a on a.al_id = i.al_id inner join EncarregadoDeEducacao e on…