-
[PostgreSQL] Schema 변경DB/PostgreSQL 2016. 12. 23. 09:48
set search_path to 변경할 스키마; -- 예시 abcd.temp1 public.temp2 과 같이 abcd 스키마에는 temp1 테이블, public 스키마에는 temp2 테이블이 존재한다고 가정 select * from temp1; ERROR: relation "temp1" does not exist set search_path to abcd; -- abcd스키마로 변경 select * from temp1; -- 성공