finding firstname + lastname groups - Mailing list pgsql-general

From blackwater dev
Subject finding firstname + lastname groups
Date
Msg-id 34a9824e0806191238s632927fcwcd31d9be9ab49445@mail.gmail.com
Whole thread Raw
Responses Re: finding firstname + lastname groups  ("Scott Marlowe" <scott.marlowe@gmail.com>)
Re: finding firstname + lastname groups  (Sam Mason <sam@samason.me.uk>)
List pgsql-general
I have to find the same firstname+ lastname combo in my db and see which name appears the most so I basically need to do the following:

select name, count(name) from people group by name having count(name)>1

The problem is name is not one column but made up of firstname, lastname...how do I do this?

Thanks!

pgsql-general by date:

Previous
From: Garry Saddington
Date:
Subject: Re: Losing data
Next
From: Philippe Grégoire
Date:
Subject: Re: A plpgsql unidentifiable problem.