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.
テーブル内の共通要素の総数を表示するテーブルを作成しようとしています。
例えば。値を持つテーブル A があります。
colName ============= a b b c c c d
次の結果を表示する方法はありますか?
colName totalCount ================== a 1 b 2 c 3 d 1
これは、集計関数COUNTとGROUP BY句を使用した単純なクエリです。
COUNT
GROUP BY
SELECT colName, COUNT(colName) totalCount FROM tableName GROUP BY colName
totalCountのエイリアスと呼ばれますCOUNT(colName)
totalCount
COUNT(colName)