What is the correct way to make an unspecified (random) selection using PHP + SQLServer, since Microsoft queries do not accept MYSQL's ORDER BY RAND ().
Using MYSQLI would look like this:
$sql ="SELECT * FROM Tabela where campo=‘algum' order by rand()”;