postgresql 컬럼 합치기 (1) 썸네일형 리스트형 [PostgreSQL] postgreSQL 문자열 합치기 변경 전 > select to_char(now(), 'YYYY-MM-DD') as today ----------------------------------------------------------- today 2019-05-29 변경 후 > select to_char(now(), 'YYYY-MM-DD' || ' 입니다') as today ----------------------------------------------------------- today 2019-05-292019-05-29 입니다 || 를 사용해서연결 SELECT A.aprv_id ||'(' || B.position || ')' as id_position FROM sct_aprv_route A LEFT JOIN sct_user B on.. 이전 1 다음