How do I escape single quote in command line query of psql?
Asked Answered
S

2

11

I googled a lot but..

How do I escape single quote in command line query of psql ?

psql -t -A -F $'\t' postgresql://zzzz:5432/casedb -U qqqq -c 'select id,ext_ids ->> 'qwe' as qwe from data ORDER BY qwe' > /jdata/qwe.tab

Results in error

ERROR:  column "qwe" does not exist
LINE 1: select id,ext_ids ->> qwe as qwe from data...
Support answered 29/7, 2016 at 11:38 Comment(0)
S
12

In Postgres you can use dollar-quoted strings:

select id,ext_ids ->> $$qwe$$ as qwe from data ORDER BY qwe;
-- or
select id,ext_ids ->> $anything$qwe$anything$ as qwe from data ORDER BY qwe;
Schnorrer answered 29/7, 2016 at 11:51 Comment(0)
L
4

You could just use double quotes (") for the shell quoting and single quotes (') for the SQL quoting:

psql -t -A -F $'\t' postgresql://zzzz:5432/casedb -U qqqq -c "select id,ext_ids ->> 'qwe' as qwe from data ORDER BY qwe" > /jdata/qwe.tab
# Here ------------------------------------------------------^---------------------------------------------------------^
Linstock answered 29/7, 2016 at 11:46 Comment(1)
You have to be wary of using double quotes on the shell command line since any special characters like '$', '*', and '?' inside of them will be evaluated.Appendicitis

© 2022 - 2024 — McMap. All rights reserved.