Re: Junk queries with variables? - Mailing list pgsql-sql

From Michael Fuhr
Subject Re: Junk queries with variables?
Date
Msg-id 20050224074045.GA30413@winnie.fuhr.org
Whole thread Raw
In response to Junk queries with variables?  ("Steve - DND" <postgres@digitalnothing.com>)
Responses Re: Junk queries with variables?  ("Steve - DND" <postgres@digitalnothing.com>)
List pgsql-sql
On Wed, Feb 23, 2005 at 11:12:47PM -0700, Steve - DND wrote:

> I really have to be missing something here and this probably a *really* noob
> question. I don't have a problem running little junk queries in the pgAdmin
> query window(SELECT blah FROM blah, INSERT INTO blah, etc...), but I can't
> figure out how to run queries with variables outside of a function. I just
> want to use variables without having to go about creating and dropping a
> function for every stupid little query I need to write.

I don't know about pgAdmin, but in psql you can use \set:

\set id 1
SELECT * FROM foo WHERE id = :id;

\set name '\'Some Name\''
SELECT * FROM foo WHERE name = :name;

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/


pgsql-sql by date:

Previous
From: "Steve - DND"
Date:
Subject: Junk queries with variables?
Next
From: Richard Huxton
Date:
Subject: Re: Postgres performance