this is what I tried but I’m sure it’s wrong.
SELECT count(12), genre
, MIN(cost) AS Low
, MAX(cost) AS High
, AVG(cost) AS Average
FROM movies
where YR > '1990'
GROUP BY genre
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is my impression of the query you were making
I am not sure what it is you are trying find. Are you are trying to get all the genres that have more than 12 movies between 1990 and the present?