Created
October 13, 2012 07:32
-
-
Save resure/3883681 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT "S"."ФИО" | |
FROM "Студент" AS "S", "Результат" AS "R", | |
(SELECT "Код" FROM "Ведомость" | |
WHERE "Предмет" = 3 AND "Дата" >= {D '2007-01-01' } | |
AND "Дата" <= {D '2007-06-01' } | |
) AS "V" | |
WHERE | |
"R"."Оценка" = 5 | |
AND "R"."Ведомость" = "V"."Код" | |
AND "R"."Студент" = "S"."№ зачетки" | |
GROUP BY "S"."ФИО" | |
HAVING COUNT("V"."Код") = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment