Y
Hacker News
new
|
ask
|
show
|
jobs
by
qd011
938 days ago
psql is good but how do you manage long multi line queries and saved collections of queries to reuse? or connections to multiple databases?
1 comments
efxhoy
938 days ago
I keep queries in .sql files in git repo. I run longer queries by writing them in a file and including/running it with \i. There's also \e to open $PSQL_EDITOR.
link