|
-
Thanks for posting an interesting query.
Here I say .....
Code:
SQL> select * from r1 ;
RDATE CPU
------------------- ----------
09-11-2005 12:05:00 10
09-11-2005 12:10:00 12
09-11-2005 12:15:00 15
09-11-2005 12:20:00 8
SQL> get 3rows_avg.sql
1 select *
2 from (
3 select rdate,
4 cpu,
5 avg(cpu) over ( order by rdate
6 rows between 0 preceding
and 2 following) rows_3_avg
7 from r1
8 )
9* where to_char(rdate,'MI') in ( '05','20')
SQL> /
RDATE CPU ROWS_3_AVG
------------------- ---------- ----------
09-11-2005 12:05:00 10 12.33
09-11-2005 12:20:00 8 8.00
Note: you can add relevant Minutes in the WHERE clause.
Tamil
Last edited by tamilselvan; 11-09-2005 at 07:10 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|