set search_path to abc_schema
: 스키마 설정.
describe table_a;
/ \d+ table_a
: describe 하면 해당 테이블에 관련된 인덱스 까지 다 나와서 좋다. jdbc를 통한 클라이언트에서는 describe가 작동하지만 psql에서는 뒤의 명령어를 써야한다.
drop index indexname;
: 인덱스를 날려버린다.
alter table postgre_c drop constraint postgre_c_pkey;
: Primary key는 drop index 명령어로 안날아가서 이렇게 날려야 한다.
ALTER TABLE distributors ADD PRIMARY KEY (dist_id);
: primary key 추가할땐 이렇게.
create index idx1 on table1 (column1)
: 인덱스 추가는 이렇게
truncate table_a;
: 테이블을 날려버릴땐 이렇게. 자동으로 vacuum까지 된다.