Ask Your Question
3

How can variable substitution be applied in psql's \copy?

asked 2023-06-29 04:16:10 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-29 04:31:01 +0000

scrum gravatar image

Variable substitution cannot be directly applied in psql's \copy command. However, you can use psql's built-in variable substitution to achieve the effect of variable substitution in a workaround.

Here's an example:

-- Set the variable
\set mypath '/path/to/myfile.csv'

-- Use the variable in the \copy command
\copy mytable from :'mypath' delimiter ',' csv;

This will substitute the value of the variable mypath in the \copy command.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-29 04:16:10 +0000

Seen: 11 times

Last updated: Jun 29 '23