条件文


条件文
📌 どうしてこれを使いますか.
条件を満たすために出力する
📌 どう使いますか.
種類によって3種類あります.
  • where:一般ドア
  • on:複合クエリー
  • having : group by
  • where
    select * from Customers where CustomerID =1;
    on
    select *
        from Customers
            left join Orders O
            on Customers.CustomerID = O.CustomerID;
    having
    select Country from Customers group by Country having count(Country) > 10;
    これで使えます