「PostgreSQL」CSVファイルの指定カラムのみをテーブルにインポート
書式
# \copy <テーブル名>(カラム1,カラム2, … ) from <ファイル名> with csv
使用例
1.cd C:\Program Files\PostgreSQL\9.6\bin
2.psql -V
3.psql -U postgres -d userdb
4.userdb-# \COPY user_mst(userid,addr) from 'C:/study/user_2021.csv’ WITH encoding CSV