Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: help with group by

Re: help with group by

From: GQ <dbaguy_ott_at_yahoo.com>
Date: 11 Jan 2005 17:05:23 -0800
Message-ID: <1105491622.814917.183050@c13g2000cwb.googlegroups.com>


Have you tried ;
select lname || ',' || fname as fullname,count(children) from people
group by lname || ',' || fname;

I beleive the Oracle documentation states that you must use the exact column definition... Received on Tue Jan 11 2005 - 19:05:23 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US