show index type
이건 ' ' 를 써 줘야 인식을 한다.
SELECT * FROM pg_indexes WHERE tablename = 'your_table';
create single or multi index
- CREATE INDEX index_name ON table_name USING btree(column_name);
CREATE INDEX index_name
ON table_name (column_name);
CREATE INDEX index_name
ON table_name (column1_name, column2_name);
create unique index
CREATE UNIQUE INDEX index_name
ON table_name (column_name);
create clusterd index
- ALTER TABLE table_name CLUSTER ON index_name;
이미 존재하는 인덱스에 클러스터 옵션을 주는 식으로 하게 되어 있다.
반응형
'DB > PostgreSQL' 카테고리의 다른 글
[PGSQL] Group by와 Partition by의 차이점 (2) | 2016.12.14 |
---|---|
[PGSQL] format 함수 (0) | 2016.12.14 |
[Postgresql][Trigger] volatile, cost 100에 대해 (0) | 2016.09.29 |
[Postgresql][linux] 파일로 Trigger 코드 관리하기 (0) | 2016.09.29 |
[Postgresql] date/time 차이 계산해서 구하기 (3) | 2016.09.26 |
[Postgresql] DB Server 'windows to linux(ubuntu)' migration - pgsql backup/restore (0) | 2016.09.24 |
[PGSQL][Sequence] column을 serial 키워드 지정했을 때 permission denied 뜰 때 (0) | 2016.09.15 |
[PGSQL] the column contains null 오류날 때 (0) | 2016.09.15 |
[PGSQL] 조건문 (0) | 2016.09.14 |
[PGSQL] Column을 다른 형으로 바꾸려는데 CAST 오류가 나면 (0) | 2016.09.14 |