postgres-copy icon indicating copy to clipboard operation
postgres-copy copied to clipboard

Table to CSV Column Problem

Open skynet86 opened this issue 9 years ago • 0 comments

Command: User.select("Other_column").where(:id => [1,2,3]).copy_to "/tmp/users.csv"

Is generating the following SQL command: COPY (SELECT name FROM "users" WHERE "users"."id" IN (1, 2, 3)) TO '/tmp/users.csv' WITH DELIMITER ',' CSV HEADER ※Mentioed column is not present in SQL command

Thank you.

skynet86 avatar Aug 11 '16 02:08 skynet86