Books and articles about SQL Rambler's Top100 Сменить язык на: Русский 29 March 2024 01:20:05


www.sql-ex.ru
Skip Navigation Links  

 

Print  Print version

Main page

Typical errors at solution of exercises. Exercise 33

S. Moiseenko

Find the dates where number of trips from town Rostov were the maximum. Result set: number of trips, date.

It seemed to me, that the formulation is extremely clear. When this exercise still was at the second stage, it did not cause any questions. The difference in class I suppose :-). Now however the necessity to answer similar questions arises so often that I had to write this FAQ.

Here a typical example of wrong query:

SELECT MAX(superden.qty), superden.date
  FROM
    (SELECT COUNT(den.trip_no) AS qty, den.date
       FROM
         (SELECT DISTINCT trip_no, date FROM Pass_in_trip) as den, 
            Trip WHERE trip.trip_no=den.trip_no AND
            trip.town_from='Rostov'
       GROUP BY den.date) AS superden
    GROUP BY superden.date

The subquery

SELECT DISTINCT trip_no, date FROM Pass_in_trip

The subquery defines the flights which have been carried out. DISTINCT here it is quite pertinent, because the combination {trip_no, date} is the same for the passengers that flew in one plane. The subquery is joining with the Trip table to select only the Rostov flights: trip.town_from ='Rostov '.

The grouping by date allows us to count up distribution of number of the Rostov flights by days. While all is true, but last step is absolutely senseless. What for one more grouping by date is needed if all is already grouped, i.e. result set includes only one row for each date?

It seems, that the author of the above solution thus tried to find a maximum, but has received the same set. Let us take sample distribution of flights number by dates:

2007-08-19     2
2007-08-20     2
2007-08-21     3

In accordance with the task formulation we should receive only one row:

2007-08-21     3

as the maximal value of number of flights (3) is reached at 2007-08-21, but we shall receive the same 3 rows as a result of last grouping by date.

I hope now that it is clear what you should do to solve this problem, and I'll not answer more letters on this occasion :-).

Main page

Print  Print version


Usage of any materials of this site is possible
only under condition of mandatory allocation of the direct link to a site
http://www.sqlbooks.ru
on each page where used materials are placed.

 Main   Articles    Books 
Рейтинг@Mail.ru Rambler's Top100 Alt Упражнения по SQL: обучение, тестирование, сертификация по языку SQL Copyright c 2002-2006. All rights reserved.