Quero retornar a ID junto com os dados filtrados pelo group by. Usei o seguinte código:
select id, nome, sobrenome, count(sobrenome) from br group by nome,sobrenome having count(sobrenome) =1
Ele me dá o seguinte erro:
ERROR: column "br.id" must appear in the GROUP BY clause or be used in an aggregate function LINE 2: id, ^
Como posso contornar?