Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
グループ内のローを制限するには、HAVING 句を使用します。
Interactive SQL 句で次の文を実行して、55 件を超える注文を持っているすべての営業担当をリストします。
SELECT SalesRepresentative, COUNT( * ) AS orders FROM SalesOrders KEY JOIN Employees GROUP BY SalesRepresentative HAVING count( * ) > 55 ORDER BY orders DESC;