How to relate 4 tables

Dear I need some help (for SQL). I have four tables as follows.
Table 1 = called josedb1999
Table 2 = phonealu1999 call
Table 3 = called courses1999
Table 4 = call sit_alu1999
Since table 4 has the data that links table 1 and 3
Link fields in table 4 sit_alu1999.al_cod, sit_alu1999.cu_cod
Table 1 josedb199.al_cod
Table 2 fonealu1999.al_cod
Table 3 courses1999.cu_cod
My question is how to build an SQL that links all tables without data repetitions. Well, in my attempts it resulted in repeated data and a very large file.
That is, I want to get the data from table 1 and the data from the others that have connection with table 1.

Below my text in Portuguese which is my language.

Prezados preciso de uma ajuda (para o SQL). Tenho quatro tabelas da seguinte forma.
Tabela 1 = chamada josedb1999
Tabela 2 = chamada fonealu1999
Tabela 3 = chamada cursos1999
Tabela 4 = chamada sit_alu1999
Sendo que a tabela 4 tem os dados que liga a tabela 1 e a 3
Campos de ligação da tabela 4 sit_alu1999.al_cod, sit_alu1999.cu_cod
Tabela 1 josedb199.al_cod
Tabela 2 fonealu1999.al_cod
Tabela 3 cursos1999.cu_cod
Minha pergunta é como montar uma SQL que liga todas as tabela sem repetições de dados. Pois, nas minhas tentativas resultou em dados repitido e um arquivo bem grande.
Ou seja, quero pegar os dados da tabela 1 e os dados das demais que tem conexão com a tabela 1.

I think that could be solved by LEFT JOIN.