http://qs321.pair.com?node_id=314015


in reply to Re: Re: Re: Right Number DB
in thread Right Number DB

You can limit the results of aggregate function in SQL with the "having" clause:
select column1,column2,count(*) from sometable group by column1,column2 having count(*) > 2

rdfield