Posts by Italo • 11 points
1 post
-
0
votes4
answers2042
viewsA: Select with 3 tables in SQL SERVER
Try to run the following query select maq.Nip, equip.tipo, marc.nome from Maquina maq, Marca marc, Equipamento equip, where maq.tipo = equip.id and equip.marca = marc.id;…