I have a files table with these attributes:
f_id, s_id, u_id, name, size, downloads, uploaded
I want my user account page to show the total bandwidth served by the users uploads. To do this, I need to take the size of each of the users upload and then * it by the downloads, and then add up all the results.
Originally I was getting the users total filesizes and then * by their total downloads, but obviously that's not accurate. Here's an example of my query:
$sql = 'SELECT SUM(downloads)
AS downloads
FROM `files`
WHERE u_id = (SELECT u_id FROM `users` WHERE username = ? LIMIT 1)
LIMIT 1';
How can I do this? Thank you.