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.
重複のないエントリの総数をカウントするために、PHP で MySQL データベースにクエリを実行しようとしています。
EXAMPLE N111US N111US N123US N345US A6-EWD A7-EEE B-18701 N123US N345AA
一意のエントリの総数を取得したいのですが、SQL クエリをどこから開始すればよいかわかりません。つまり、Total Returned: 7 です。
これDISTINCTは、このクエリで:
DISTINCT
SELECT COUNT(DISTINCT `column`) AS `cnt` FROM `table`;
重複を排除します。
次に、php から、cnt他の通常のクエリと同じように列の値を取得します。
cnt