hi
1) The following query obtains from each film category the cheapest possible DVD with the highest rating:
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNER JOIN Category AS C1 ON C1.CategoryId = FM1.CategoryId
WHERE FM1.DVDPrice =
(SELECT MIN(DVDPrice)
FROM Films AS FM2
WHERE FM2.DVDPrice IS NOT NULL
AND FM1.CategoryId = FM2.CategoryId
AND FM2.Rating =
(SELECT MAX(FM3.Rating)
FROM Films AS FM3
WHERE FM3.DVDPrice IS NOT NULL
AND FM2.CategoryId = FM3.CategoryId
)
)
ORDER BY FM1.CategoryId;
Query is not perfect, since film “Alien3” in category A could have a very low rating, but if its DVDPrice happens to be the same as the price of a cheapest film with highest rating ( in the same category ), then “Alien3” will also be returned in a query. Does the following query correct this problem:
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNER JOIN Category AS C1 ON C1.CategoryId = FM1.CategoryId
WHERE FM1.DVDPrice =
(SELECT MIN(DVDPrice)
FROM Films AS FM2
WHERE FM2.DVDPrice IS NOT NULL
AND FM1.CategoryId = FM2.CategoryId
AND FM1.Rating =
(SELECT MAX(FM3.Rating)
FROM Films AS FM3
WHERE FM3.DVDPrice IS NOT NULL
AND FM2.CategoryId = FM3.CategoryId
)
)
AND FM1.Rating=(SELECT MAX(FM2.Rating)
FROM Films AS FM2
WHERE FM2.DVDPrice IS NOT NULL
AND FM2.CategoryId = FM1.CategoryId
)
ORDER BY FM1.CategoryId;
2) I was sure that by changing "FM2.Rating=" to "FM1.Rating=" that the query would also produce the correct results, but it doesn’t. Any idea why it doesn’t work?
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNER JOIN Category AS C1 ON C1.CategoryId = FM1.CategoryId
WHERE FM1.DVDPrice =
(SELECT MIN(DVDPrice)
FROM Films AS FM2
WHERE FM2.DVDPrice IS NOT NULL
AND FM1.CategoryId = FM2.CategoryId
AND FM1.Rating =
(SELECT MAX(FM3.Rating)
FROM Films AS FM3
WHERE FM3.DVDPrice IS NOT NULL
AND FM2.CategoryId = FM3.CategoryId
)
)
ORDER BY FM1.CategoryId;
thanx
EDIT - REPLYING TO MR. Bill Karwin
If we insert into Films table the following rows:
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 1, 'The Dirty Half Dozen', 1987, 'Six men go to war wearing unwashed uniforms. The horror!', 'N', 2, 4, NULL );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 2, 'On Golden Puddle', 1967, 'A couple find love while wading through a puddle', 'Y', 4, 2, 12.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 3, 'The Lion, the Witch, and the Chest of Drawers', 1977, 'A fun film for all those interested in zoo/magic/furniture drama', 'N', 1, 3, NULL );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 4, 'Nightmare on Oak Street, Part 23', 1997, 'The murderous Terry stalks Oak Street', 'Y', 2, 3, 9.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 5, 'The Wide Brimmed Hat', 2005, 'Fascinating life story of a wide brimmed hat', 'N', 1, 5, NULL );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 6, 'Sense and Insensitivity', 2001, 'She longs for a new life with Mr Arcy, he longs for a small cottage in the Hamptons', 'Y', 3, 6, 15.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 7, 'Planet of the Japes', 1967, 'Earth has been destroyed, to be taken over by a species of comedians', 'Y', 5, 4, 12.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 8, 'The Maltese Poodle', 1947, 'A mysterious bite mark, a guilty looking poodle. 1st class thriller', 'Y', 1, 1, 2.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 2, '15th Late Afternoon', 1989, 'One of Shakespeare''s lesser known plays', 'N', 5, 6, 12.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 2, 'Soylent Yellow', 1967, 'Detective Billy Brambles discovers Soylent Yellow is made of Soya Bean. Ewwww!', 'Y', 5, 5, 12.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 16, 'First', 1967, '', 'Y', 1, 2, 12.99 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 17, 'Second', 1967, '', 'Y', 7, 2, 100 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 19, 'Third', 1967, '', 'Y', 7, 2, 10 );
INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId, DVDPrice ) VALUES ( 20, 'Fourth', 1967, '', 'Y', 1, 2, 10 );
Then my second query ( the one you've said that it works ) returns the following films:
• The Maltese Poodle
• Third Nightmare on Oak Street
• Planet of the Japes
• Soylent Yellow
• 15th Late Afternoon
while yours returns
• The Dirty Half Dozen
• The Lion
• the Witch and the Chest of Drawers
• Nightmare on Oak Street
• The Wide Brimmed Hat
• Planet of the Japes
• The Maltese Poodle
• 15th Late Afternoon
• Soylent Yellow and Third
EDIT - REPLYING TO MR. Russell Steen
SELECT * FROM Films INNER JOIN
(SELECT Min(DVDPrice) as DVDPrice, MaxRating, x1.CategoryId, x1.Category FROM
(SELECT FilmName, DVDPrice, Rating, MaxRating, Category, Films.CategoryId FROM Films INNER JOIN
(SELECT MAX(Rating) as MaxRating, FM1.CategoryId, C1.Category
FROM Films AS FM1 INNER JOIN Category AS C1 ON C1.CategoryId = FM1.CategoryId
GROUP BY Category, FM1.CategoryId
) x on Films.Rating = x.MaxRating and Films.CategoryId = x.CategoryID
) x1
WHERE DVDPrice IS NOT NULL
GROUP BY CategoryId,Category
) y on Films.Rating = y.MaxRating and Films.CategoryId = y.CategoryId and Films.DVDPrice = y.DVDPrice
I’ve rewrote your query best I could, but I’m not so sure whether it produces the correct results and truth be told, I’ve got completely lost on whether particular inner queries should also select FilmID columns etc.
EDIT - SECOND REPLY TO MR. Bill Karwin
SELECT f.FilmName, f.Rating, f.DVDPrice, f.CategoryId
FROM Films f
LEFT OUTER JOIN Films p ON (f.CategoryId = p.CategoryId
AND p.AvailableOnDvd = 'Y' AND f.AvailableOnDvd = 'Y' AND f.DVDPrice > p.DVDPrice)
LEFT OUTER JOIN Films r ON (f.CategoryId = r.CategoryId
AND r.AvailableOnDvd = 'Y' AND f.DVDPrice = r.DVDPrice AND f.Rating < r.Rating)
WHERE p.CategoryId IS NULL AND r.CategoryId IS NULL
ORDER BY f.CategoryId;
