LoginSignup
0
0

More than 5 years have passed since last update.

postgresで特定の行をexportしてimportする

Last updated at Posted at 2016-03-08

export

psql sample1 -U sample1
copy (select * from authuser where id=7) TO '/tmp/output.csv' DELIMITER ',';
\q

import

psql sample2 -U sample2
copy authuser from '/tmp/output.csv' with csv
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0