6
I got the following SQL INNER JOIN:
$sqlxml = "
SELECT
clientes.id, clientes.nome, clientes.status, clientes.cliente, clientes.tipo,
clientes.disponibilidade, imoveis.id, imoveis.cod, imoveis.status, imoveis.vanual, COUNT(imoveis.id) AS imoveis
FROM clientes
INNER JOIN imoveis ON clientes.cliente = imoveis.cod WHERE imoveis.status='2' AND clientes.status='2' AND imoveis.vanual < clientes.vanual AND imoveis.vanual <> '0' AND clientes.cliente = '$cliente'
GROUP BY clientes.id";
Him repeats the property twice even using GROUP BY. Since there is in the database this information repeated, what do?