「PostgreSQL入門」Windows10環境にcsvファイルをインポートする方法

1.コマンドプロンプトを立ち上げて、「管理者として実行」をクリックする
>cd C:\Program Files\PostgreSQL\9.6\bin

2.バージョン確認
C:\Program Files\PostgreSQL\9.6\bin>psql -V
psql (PostgreSQL) 9.6.5

3.ログイン
C:\Program Files\PostgreSQL\9.6\bin>psql -U postgres -d postgres
ユーザ postgres のパスワード:
psql (9.6.5)
“help" でヘルプを表示します.

4.csvファイルを取り込む
# \COPY テーブル名 from 'C:/datacsv/testtbl.csv’ WITH encoding 'sjis’ CSV

# \COPY student_tbl from 'C:/datacsv/testtbl.csv’ WITH encoding 'sjis’ CSV

5.ログアウト
\q

PostgreSQL

Posted by arkgame