PostgreSQL
-
스프링 데이터 - PostgreSQL백기선(인프런 강의)/스프링 부트 개념과 활용 2020. 7. 5. 10:49
2020/07/03 - [백기선/스프링 부트 개념과 활용] - 스프링 데이터 2부: 인메모리 데이터 베이스 2020/07/04 - [백기선/스프링 부트 개념과 활용] - 스프링 데이터 - MySQL 예제 의존성 추가 org.postgresql postgresql PostgreSQL 설치 및 서버 실행 (docker) PostgreSQL 설치 및 서버 실행 (docker) docker run -p 5432:5432 -e POSTGRES_PASSWORD=pass -e POSTGRES_USER=keesun -e POSTGRES_DB=springboot --name postgres_boot -d postgres docker exec -i -t postgres_boot bash su - postgres psql ..
-
psql 문법DataBase/PostgreSQL 2020. 6. 4. 16:54
우선 회사에서 주로 사용하는 문법에 대해 정리해보자.. postgres DB에 postgre 유저 접속 $psql -h 127.0.0.1 -U postgre -d postgres 비번 입력 1234 psql에 지정한 비밀번호로 접속 $ PGPASSWORD=password psql -U postgres -d postgres psql 에서 .sql파일에 저장되어 있는 쿼리 실행 $ PGPASSWORD=password psql -U postgres -d postgres -f test.sql $ PGPASSWORD=password psql -U postgres -d postgres < test.sql $ psql -h 127.0.0.1 -U postgres -d postgres < test.sql 비밀번호 입력..