1) pgadmin4 접속
2) DB > Restore
psql -U <username> -d <dbname> -a -f </path/to/yourfile.sql>
# username: PostgreSQL 사용자 이름
# dbname: 복원할 데이터베이스 이름
# /path/to/yourfile.sql: 복원하려는 SQL 파일의 경로
psql -U postgres -d test -a -f "C:\Users\Desktop\sample.sql"