vote up 1 vote down star
2

Hi, I'm trying to find out the average number of times a value appears in a column, group it based on another column and then perform a calculation on it.

I have 3 tables a little like this

DVD

ID | NAME
1  | 1       
2  | 1     
3  | 2      
4  | 3

COPY 

ID | DVDID   
1  | 1  
2  | 1  
3  | 2  
4  | 3  
5  | 1

LOAN

ID | DVDID | COPYID  
1  | 1     |  1  
2  | 1     |  2  
3  | 2     |  3    
4  | 3     |  4  
5  | 1     |  5
6  | 1     |  5
7  | 1     |  5
8  | 1     |  2

etc

Basically, I'm trying to find all the copy ids that appear in the loan table LESS times than the average number of times for all copies of that DVD.

So in the example above, copy 5 of dvd 1 appears 3 times, copy 2 twice and copy 1 once so the average for that DVD is 2. I want to list all the copies of that (and each other) dvd that appear less than that number in the Loan table.

I hope that makes a bit more sense...

Thanks

flag
So in your example, what result data set should be returned? Should it output 2 for DVDID=1, and 1 for the other two? – Mark Pim Apr 29 at 0:15
...because saying 'the average number of times a value appears in a column' doesn't make any sense. The number of times it appears is the number of times it appears; you can't average one value. – Mark Pim Apr 29 at 0:17
Sorry, I'm half asleep! I meant I want to find the average number of times that copies of each DVD appear in the Loan table – Dan Apr 29 at 0:23
@Dan: That's not any more clear. Please edit your question and show an example of the result you want. – Bill Karwin Apr 29 at 0:27

3 Answers

vote up 2 vote down

This should work in Oracle:

create view dvd_count_view
select dvdid, count(1) as howmanytimes
  from loans
 group by dvdid;

select avg(howmanytimes) from dvd_count_view;
link|flag
vote up 1 vote down

Untested...

with 
loan_copy_total as 
(
    select dvdid, copyid, count(*) as cnt
    from loan
    group by dvdid, copyid
),
loan_copy_avg as
(
    select dvdid, avg(cnt) as copy_avg
    from loan_copy_total
    group by dvdid
)

select lct.*, lca.copy_avg
from loan_copy_avg lca
inner join loan_copy_total lct on lca.dvdid = lct.dvdid
    and lct.cnt <= lca.copy_avg;
link|flag
vote up 0 vote down

Similar to dotjoe's solution, but using an analytic function to avoid the extra join. May be more or less efficient.

with 
loan_copy_total as 
(
    select dvdid, copyid, count(*) as cnt
    from loan
    group by dvdid, copyid
),
loan_copy_avg as
(
    select dvdid, copyid, cnt, avg(cnt) over (partition by dvdid) as copy_avg
    from loan_copy_total
)

select *
from loan_copy_avg lca
where cnt <= copy_avg;
link|flag
I've been seeing this 'with' syntax lately. Is this standard SQL or is it in Oracle? – d03boy Apr 30 at 15:13
It's part of the ANSI SQL standard – Dave Costa Apr 30 at 16:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.