Posts by Thiago Elias • 66 points
2 posts
-
1
votes1
answer180
viewsA: Is it possible to have multiple connections in a single socket?
Yes, one of the possible ways is with socket_select http://php.net/manual/en/function.socket-select.php (recommend using php’s English documentation for socket, as the Portuguese version has almost…
-
4
votes2
answers182
viewsA: Higher value comparing lines
I think it would be something like this SELECT A.* FROM Tabela A INNER JOIN ( SELECT MAX(numero) as numero, nome FROM Tabela GROUP BY nome ) B ON A.nome = B.nome AND A.numero = B.numero ORDER BY…