How to create table relationships in mysql [closed]

0

I am starting with a relational database and I have difficulty relating tables, I am a layman in the field. I ask for help by indicating one / some clear and objective books on the subject. Thanks for the attention

    
asked by anonymous 18.10.2016 / 14:45

1 answer

0

@mposso

INNER JOIN or LEFT JOIN, example:

SELECT * FROM professores p
INNER JOIN alunos a ON a.idProfessor = p.id
    
18.10.2016 / 14:53