Posts by Willians Andrade • 11 points
1 post
-
0
votes3
answers255
viewsA: SQL bring result with repeated column numbers all only the largest
Try using the WHERE SQL command as below: select a.cod, a.nome, b.pedido, b.versao from cliente a inner join pedido b ON a.cod= b.cod where b.versao = 3 order by b.pedido;…