From: | "Chad Wagner" <chad(dot)wagner(at)gmail(dot)com> |
---|---|
To: | "Karthikeyan Sundaram" <skarthi98(at)hotmail(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [SQL] question on passing parameter in sql query |
Date: | 2007-02-08 01:56:12 |
Message-ID: | 81961ff50702071756j62247349k7062839ec44901a5@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-sql |
On 2/7/07, Karthikeyan Sundaram <skarthi98(at)hotmail(dot)com> wrote:
>
> I don't want to compare with Oracle and postgres. But I have a
> situation.
> I am using psql command line tool supplied by postgres.
>
> In Oracle I can say
>
> select * from emp where emp_id = &1
>
> Oracle will ask:
> Enter a value for 1:
>
> If I enter 10, then Oracle will get the empid=10
>
> What is the equal command in postgres ?
>
It can be done, but it is a bit "different" and this method is UNIX
dependent:
test=# create table data (x integer not null primary key);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "data_pkey"
for table "data"
CREATE TABLE
test=# insert into data values (1),(2),(3),(4);
INSERT 0 4
test=# \set foo `head -1`
3
test=# \echo :foo
3
test=# select * from data where x = :foo;
x
---
3
(1 row)
I don't believe it automatically prompts the way Oracle does. It would be
nice if there was a built-in "\prompt [VARIABLE] [TEXT]".
From | Date | Subject | |
---|---|---|---|
Next Message | Moiz Kothari | 2007-02-08 05:49:22 | Question on Fragmentations |
Previous Message | Jaime Casanova | 2007-02-08 01:44:01 | Re: Moving a table to another directory |
From | Date | Subject | |
---|---|---|---|
Next Message | Bryce Nesbitt | 2007-02-08 07:16:12 | Re: Seeking quick way to clone a row, but give it a new pk. |
Previous Message | Karthikeyan Sundaram | 2007-02-08 00:49:45 | question on passing parameter in sql query |