当我像这样从postgres用户帐户运行psql命令时:
sudo -i -u testuser psql testdb -c 'select * from "USER" where "LogInName"='TESTING';'
那么,在这种情况下我该怎么办?谢谢您的回答。
答案 0 :(得分:0)
您可以在提到的here
中使用postgres中的美元报价字符串sudo -i -u testuser psql testdb -c 'select * from "USER" where "LogInName"=$$TESTING$$;'