Last active
October 26, 2016 08:19
-
-
Save MartelliEnrico/31db589d3ad51ce66525562cb45112f0 to your computer and use it in GitHub Desktop.
This file contains 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 Tax | |
FROM ( | |
SELECT Bookings.Tax AS Tax | |
FROM Bookings | |
JOIN Field | |
ON Bookings.Code = Field.Code | |
WHERE Field.IsCovered = 0 | |
GROUP BY Tax | |
HAVING COUNT(Tax) >= 2 | |
) | |
WHERE Tax NOT IN ( | |
SELECT DISTINCT Bookings.Tax AS Tax | |
FROM Bookings | |
JOIN Field | |
ON Bookings.Code = Field.Code | |
WHERE Field.IsCovered = 1 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment