Re: psql questions - Mailing list pgsql-novice

From John DeSoi
Subject Re: psql questions
Date
Msg-id D0E42022-9CC1-11D9-A708-000A95B03262@pgedit.com
Whole thread Raw
In response to psql questions  ("Walker, Jed S" <Jed_Walker@cable.comcast.com>)
List pgsql-novice
On Mar 24, 2005, at 6:29 PM, Walker, Jed S wrote:

> How can do those things in psql?  (I found the \set which seems to
> work, no
> error, but I can't figure out how to use the variable in a psql
> session)


You prefix the variable with a colon to get the value. Here are a few
examples:

\set mystring '\'here is a string\''

select :mystring || ' test';
        ?column?
----------------------
  here is a string test
(1 row)


\set myint 37

select :myint + 10;
  ?column?
----------
        47
(1 row)


John DeSoi, Ph.D.
http://pgedit.com/
Power Tools for PostgreSQL


pgsql-novice by date:

Previous
From: "Walker, Jed S"
Date:
Subject: psql questions
Next
From: luckydavid@optusnet.com.au
Date:
Subject: install pgaccess under windows xp