You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following queries will return the ambiguous groups anti-pattern which is wrong
SELECTShippers.ShipperName, COUNT(Orders.OrderID) AS NumberOfOrders FROM Orders
LEFT JOIN Shippers ONOrders.ShipperID=Shippers.ShipperIDGROUP BY ShipperName;
SELECTShippers.ShipperName,
COUNT(Orders.OrderID) AS NumberOfOrders
FROM Orders, Shippers
WHEREOrders.ShipperID=Shippers.ShipperIDGROUP BY ShipperName;
SELECT supplierId as a, AVG(price)
FROM product
WHERE pCategory <>NULLGROUP BY supplierId
HAVINGAVG(price) >9.99
The text was updated successfully, but these errors were encountered:
The following queries will return the ambiguous groups anti-pattern which is wrong
The text was updated successfully, but these errors were encountered: