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

Home -> Community -> Usenet -> c.d.o.server -> DECODE

DECODE

From: Chua Boon Yiang <chuaby_at_hotmail.com>
Date: Fri, 4 Feb 2000 13:30:09 +0800
Message-ID: <87do47$k2t$1@newton.pacific.net.sg>


Hi,
in the statement :
select

DECODE (deptno,10,      'ACCOUNTING',
                                20,     'RESEARCH',
                                30,     'OPERATION',
                                40,     'OPERATION',
                                        'NONE')
count(*) from tableA
group by deptno

is there anyway for me to group by the decoded values rather than the original stored values ?
eg i have 2 diff dept numbers, but i want to group them as 1 dept, using the above statement, there will be 2 rows of OPERATION. col alias cannot be used in the group by.

Thanks
Boon Yiang Received on Thu Feb 03 2000 - 23:30:09 CST

Original text of this message

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