Re: Standard Deviation - are there any existing SQL function
From: Peter-Paul van de Beek <P.P.v.d.Beek_at_a2000.com>
Date: Tue, 01 Dec 1998 10:12:39 +0100
Message-ID: <3663B307.350E6A02_at_a2000.com>
Date: Tue, 01 Dec 1998 10:12:39 +0100
Message-ID: <3663B307.350E6A02_at_a2000.com>
Norazman Sahir wrote:
> Hi,
>
> Again a very straight forward question.
> In Ms Access there is a built in function to calculate a standard
> deviation (ie DStDev & DStDevP)
> Does Oracle SQL also have one?
>
YES
> If so, can somebody give me the syntax examples...Thanks.
select stddev( sal )
from emp;
and
select variance( sal )
from emp;
See the group functions in your SQL*plus manual Received on Tue Dec 01 1998 - 10:12:39 CET