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.
列内のすべての属性のリストを取得するにはどうすればよいですか。すべての行を調べて、それぞれの異なる属性をカウントする必要があるため、それらを並べ替える行が非常に多いため、機能しません。約 10 ~ 20 の異なる属性があると推測していますが、500000 行以上あります。
列内のさまざまな値と、値が発生する頻度を確認する場合は、次のようにします。
select the_column, count(*) from the_table group by the_column;
select distinct column_value from table