Re: psql with option -c fails.. - Mailing list pgsql-general

From patrick keshishian
Subject Re: psql with option -c fails..
Date
Msg-id CAN0yQBqTvSFksbKGap5c6xuTrohzZu6FtpuQ1AQitDpRFnBSxQ@mail.gmail.com
Whole thread Raw
In response to psql with option -c fails..  (akp geek <akpgeek@gmail.com>)
Responses Re: psql with option -c fails..  (akp geek <akpgeek@gmail.com>)
List pgsql-general
On Wed, Sep 21, 2011 at 7:54 AM, akp geek <akpgeek@gmail.com> wrote:
> Hi all -
>                I am trying to run the psql command the following way and
> it's failing . Can you please help?
>                 psql  -d mydb  -c 'update tb_user set accountstatus='A'
> where userid=123'
> ERROR:  column "a" does not exist
> LINE 1: ...date tb_user accountstatus=A

Try:

  psql -d mydb -c "update tb_user set accountstatus='A' where userid=123"

You need to double quotes since you are using single quotes in your SQL string.

--patrick

pgsql-general by date:

Previous
From: Lonni J Friedman
Date:
Subject: Re: psql with option -c fails..
Next
From: akp geek
Date:
Subject: Re: psql with option -c fails..