Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> SV: help on aggregate functions
Hi Rachel,
Oracle has an interface, which makes it possible, that you can write =
your
own User-Defined Aggregate Functions. The hard way to get a feeling with =
how
aggregate functions are working is to read chapter 11 "User-Defined
Aggregate Functions" in "Oracle9i Data Cartridge Developer's Guide, Part =
No.
A96595-01", and then try and test it.
Anyway, let me try to explain how an aggregate function is processed =
with a
simple example
select deptno, sum(sal)
from emp
where job !=3D 'MANAGER'
group by deptno
having sum(sal) > 6500
order by deptno
-----Oprindelig meddelelse-----
Fra: oracle-l-bounce_at_freelists.org =
[mailto:oracle-l-bounce_at_freelists.org] P=E5
vegne af Rachel Carmichael
Sendt: 9. februar 2004 21:52
Til: freelists oracle-l
Emne: help on aggregate functions
>From a friend of mine:
"what I'm looking for is a detailed breakdown on how aggregate functions process in the database. kind of a step-by-step to how they roll through the system"
I know that *I* don't know the answer. But I know someone on this list likely does.
Help please?
Rachel
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Feb 10 2004 - 00:52:37 CST
![]() |
![]() |