4
I have 4 tables in my database
Tabela Cadastro
- idCadastro(PK)
- IP
Tabela Porta
- idPorta(PK)
- numero porta
- idSwitch(FK)
Tabela Porta_has_Cadastro
- idCadastro(FK)
- idPorta(PK)
//Observação: Relaçao n para n entre cadastro e porta.
Tabela Switch
- idSwitch
- Modelo
I want the information to come out like this:
IP ---- PORTA ---- SWITCH
Example:
O ip 192.168.0.1 esta na porta 1 do Switch HP
O ip 192.168.0.2 esta na porta 2 do Switch Dell
Fix: switch table does not have idPorta. Actually the port table has idSwitch
– Guilherme Duarte
but I’ve adapted and it worked. Thanks!
– Guilherme Duarte