단순하게 두개의 테이블을 합쳐주는 역활을 하는 듯?
[링크 : http://www.postgresqltutorial.com/postgresql-union/]
+
이름이 서로 다른 항목을 union으로 합치니
postgresql에서 ?column? 으로 나와버려서 이름 바꾸려고 고군분투!
SELECT 'name' AS A FROM B
UNION
SELECT 'symbol' AS A FROM C
이런식으로 하면 AS 'A'가 컬럼 명으로 인식되서 나온다!
[링크 : http://www.postgresqltutorial.com/postgresql-select-distinct/]
'프로그램 사용 > postgreSQL' 카테고리의 다른 글
pgfutter (0) | 2019.08.06 |
---|---|
postgres \COPY (0) | 2019.08.06 |
postgresql csv update (0) | 2019.06.26 |
postgresql csv import (0) | 2019.06.25 |
데이터베이스 테이블 복제하기(내용 없이) (0) | 2019.06.25 |