[PostgreSQL] PL/Python
PL/Python을 이용하여 PostgreSQL의 데이터를 Python으로 다루거나 외부 데이터베이스의 데이터를 조회할 수 있다.# apt-get install postgresql-plpython3-13# psql -U admin postgrespsql (13.3 (Debian 13.3-1.pgdg100+1), server 13.15 (Debian 13.15-1.pgdg100+1))Type "help" for help.postgres=# CREATE EXTENSION plpython3u; 파이썬과 외부 모듈을 설치한다.PostgreSQL, Oracle 그리고 Trino에 접속하기 위해 라이브러리 설치# apt-get install python3 python3-pip python3-setuptools bu..
2024.12.06