Jump to content

having issue -- SELECT with SUM and AVG


ntroycondo

Recommended Posts

I am working with a database for videos. I want to know how many videos are uploaded each year and their average file size. My sql statement to retrieve number of files and their average size for each year should be??? Maybe i need SUM and AVG and grouped by year?

 

SELECT (SUM)videoid, AVG(filesize) FROM HWVideo GROUP BY date;

Table is HWVideo

Have column of videoid, filesize, date, and some others.

Link to comment
Share on other sites

Hi

 

Sum adds things up. Ie, you could use it to add up the total sizes of the videos. However you appear to have one row per uploaded video so you would want to COUNT them instead

 

SELECT EXTRACT(YEAR FROM uploadDate) AS uploadYear, COUNT(*), AVG(filesize)
FROM HWVideo
GROUP BY uploadYear

 

All the best

 

Keith

Link to comment
Share on other sites

Yeah, I see I need to use COUNT (*).  I'm not familiar with EXTRACT.  But I see that it is getting YEAR from DATE. The columns I have are:

videoid, date, filename, filesize, photographerid, cameraid, and locationid.

 

Is only way to get YEAR is to use EXTRACT? Is there a way to do without EXTRACT? Just curious...

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.