PostgreSQL TIPS

From 흡혈양파의 인터넷工房
Jump to navigation Jump to search

데이터베이스 사용시 pg_hba.conf 설정


postgreSQL관련 NHN개발자 블로그의 리뷰


postgreSQL의 데이터타입


table설계시 forign key의 지정방법

CREATE TABLE weather (
    city        varchar(80) references cities (city),
    temp_lo  int,
);

이런식으로 해주면 성공