4
I need to make a select on four tables but I’m having a headache with it, follows the image of how they are related:
It would be something like :
SELECT integrantes.id_integrante,
integrantes_documento.nome_integrante,
integrantes_endereco.cep_integrante,
votos_uniforme.voto_uniforme1,
votos_uniforme.voto_uniforme2,
votos_uniforme.voto_uniforme3
FROM integrante
Just missing the JOIN’S, someone can help me?
Which fields you need to be listed?
– gabrielfalieri
The Join in thesis, does not change, you just put JOIN table (tbl_select.id = tbl_join.id)...
– gabrielfalieri
I put in the SELECT citation what would be the fields, would be to give an example ?
– Lone Tonberry