Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 列に従ってテーブルをグループ化する方法を見つけようとしました。たとえば、私が書くとき:
Select * from table GroupBy hotelName
hotelID に従ってテーブルをグループ化します。ただし、hotelName と hotelID の両方でグループ化したいと考えています。つまり、2 つの行が同じ hotelID で、hotelName が同じである場合、同じグループにグループ化したいのですが、助けてくれる人はいますか? 前もって感謝します。
コンマを使用するだけです。
GROUP BY hotelID, hotelName
SELECT * FROM table GROUP BY hotelID, hotelName