distinct count만 생각했는데 group by를 써야하는 가였나..
위에는 distinct의 영향을 받아 order by column_name이 적용되고
아래는 order by가 적용되지 않는 순서로 나온다.(결과는 동일)
select distinct(column_name), count(*) from table group by(column_name) select column_name, count(*) from table group by(column_name) |
'프로그램 사용 > postgreSQL' 카테고리의 다른 글
cross join (0) | 2019.09.08 |
---|---|
sql 여러행을 하나로 합치기 concat (0) | 2019.09.08 |
postgresql.conf 설정사항들 (0) | 2019.09.06 |
postgresql copy from csv , iso8859-1 (0) | 2019.09.05 |
postgresql copy from csv, date null (0) | 2019.09.05 |