-
postgreSQL 사용법 - 테이블 업데이트프로그래밍/DB 2019. 9. 28. 16:09728x90반응형
postgresql 테이블 업데이트 방법
( how to update postgresql table )
다른 테이블 필드 값으로 업데이트
update table2 as f set field1 = h.field1 from table1 as h where f.field2 = 2 and f.id = h.id;
같은 테이블 필드를 분리해서 업데이트
update 테이블이름 set 본번 = split_part(지번, '-',1);
특정 값으로 전체 필드 업데이트
update 테이블이름 set 칼럼이름='문자열'
728x90반응형'프로그래밍 > DB' 카테고리의 다른 글
psycopg2.OperationalError: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"? (0) 2020.03.27 sed로 " 안의 , 제거하기 (1) 2020.01.08 [ postgreSQL] 다른 테이블 복사하기 (2) 2019.09.28 postgresql 테이블 조인(join) 예시 (0) 2019.04.27 postgresql 의 기본키 자동 증가 (0) 2019.04.26