Re: Junk queries with variables?

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: Junk queries with variables?
Дата
Msg-id 20050224074045.GA30413@winnie.fuhr.org
обсуждение исходный текст
Ответ на Junk queries with variables?  ("Steve - DND" <postgres@digitalnothing.com>)
Ответы Re: Junk queries with variables?  ("Steve - DND" <postgres@digitalnothing.com>)
Список 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 по дате отправления:

Предыдущее
От: "Steve - DND"
Дата:
Сообщение: Junk queries with variables?
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: Postgres performance