Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ambiguous groups wrong #9

Open
leonardomathon opened this issue Mar 15, 2022 · 0 comments
Open

Ambiguous groups wrong #9

leonardomathon opened this issue Mar 15, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@leonardomathon
Copy link
Owner

leonardomathon commented Mar 15, 2022

The following queries will return the ambiguous groups anti-pattern which is wrong

SELECT Shippers.ShipperName, COUNT(Orders.OrderID) AS NumberOfOrders FROM Orders
LEFT JOIN Shippers ON Orders.ShipperID = Shippers.ShipperID
GROUP BY ShipperName;
SELECT Shippers.ShipperName,
  COUNT(Orders.OrderID) AS NumberOfOrders
FROM Orders, Shippers
WHERE Orders.ShipperID = Shippers.ShipperID
GROUP BY ShipperName;
SELECT supplierId as a, AVG(price)
FROM product
WHERE pCategory <> NULL
GROUP BY supplierId
HAVING AVG(price) > 9.99
@leonardomathon leonardomathon added the bug Something isn't working label Mar 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant