[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

how do I formulate a MySQL query to limit results in the following way?

Asked by bitt3n in MySQL Server

Tags: mysql

I have a table 'films' containing data regarding films (a unique 'film_id', a 'title', a box-office gross result in $M ('box_result') etc.), and a table 'estimates' containing box-office gross estimates for these films. The latter table has multiple estimates for each film, with fields for the estimate value ('estimate'), and the id of the film for to which the estimate pertains ('film_id').

right now I have a functional query that retrieves fields from the film table, along with the average of all estimates for that film from the estimates table. It looks like this:

SELECT title, trailer, synopsis, estimate_close_date, release_date, poster, films.film_id, box_result, ROUND(AVG( e1.estimate )) AS average
FROM films, estimates AS e1
WHERE box_result IS NOT NULL
AND films.film_id = e1.film_id
AND box_result > 50
GROUP BY films.film_id
ORDER BY box_result_date DESC
LIMIT 10

I would like to alter this query to return only those films for which the error of the average estimate is below a specific value (say 30%). So I want a condition something like:

ABS( ( AVG( e1.estimate ) - films.box_result )/films.box_result ) < 0.3

where the estimates used in this calculation are only those corresponding to the relevant film (ie, e1.film_id = films.film_id)

What's the best way to modify this query to limit the results to this subset?

So far I've tried these:

SELECT title, trailer, synopsis, estimate_close_date, release_date, poster, films.film_id, box_result, ROUND(AVG( e1.estimate )) AS average
FROM films, estimates AS e1
WHERE box_result IS NOT NULL
AND films.film_id = e1.film_id
AND ROUND(AVG( e1.estimate )) > 50
AND ABS( ( AVG( e1.estimate ) - films.box_result )/films.box_result ) < 0.3
GROUP BY films.film_id
ORDER BY box_result_date DESC
LIMIT 10

and

SELECT title, trailer, synopsis, estimate_close_date, release_date, poster, films.film_id, box_result, ROUND(AVG( e1.estimate )) AS average
FROM films, estimates AS e1
WHERE box_result IS NOT NULL
AND films.film_id = e1.film_id
AND ROUND(AVG( e1.estimate )) > 50
GROUP BY films.film_id
HAVING ABS( ( AVG( e1.estimate ) - films.box_result )/films.box_result ) < 0.3
ORDER BY box_result_date DESC
LIMIT 10

but in both cases I get the error 'invalid use of group function'

[+][-]06/30/08 05:05 PM, ID: 21903999Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: MySQL Server
Tags: mysql
Sign Up Now!
Solution Provided By: luoshiben
Participating Experts: 1
Solution Grade: A
 
[+][-]06/30/08 01:41 PM, ID: 21902853Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/30/08 01:54 PM, ID: 21902960Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/30/08 02:40 PM, ID: 21903250Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/30/08 03:02 PM, ID: 21903405Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/01/08 07:15 AM, ID: 21907994Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/01/08 10:15 AM, ID: 21909647Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628