I have the following SQL that correctly counts the number of properties:
select
clientes.id,
clientes.nome,
clientes.status,
clientes.cliente,
clientes.tipo,
clientes.disponibilidade,
imoveis.id,
imoveis.cod,
imoveis.status,
imoveis.vvenda,
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.vvenda < clientes.disponibilidade
AND imoveis.vvenda <> '0'
AND clientes.cliente = '$cliente'
AND imoveis.cod = '$cliente'
GROUP BY clientes.id
I just needed to make a small implementation (I highlighted below what I added), but the number of properties is now incorrect in the count. See below for SQL with implementations:
select
clientes.id,
clientes.nome,
clientes.status,
clientes.cliente,
clientes.tipo,
clientes.disponibilidade,
imoveis.id,
imoveis.cod,
imoveis.status,
imoveis.vvenda,
COUNT(imoveis.id) AS imoveis,
fotos.cod
from clientes
inner join imoveis on clientes.cliente = imoveis.cod
inner join photos on fotos.cod = imoveis.id
where
imoveis.status='2'
AND clientes.status='2'
AND imoveis.vvenda < clientes.disponibilidade
AND imoveis.vvenda <> '0'
AND clientes.cliente = '$cliente'
AND imoveis.cod = '$cliente'
GROUP BY clientes.id
Just these simple implementations for real estate counting would be totally different.
I really need some help!