Re: How to use nested select statements

From: Don Baccus <dhogaza(at)pacifier(dot)com>
To: Sanjay Arora <sk(at)pobox(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: How to use nested select statements
Date: 2000-11-29 15:43:26
Message-ID: 3.0.1.32.20001129074326.0179ecb0@mail.pacifier.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

At 08:31 PM 11/29/00 +0530, Sanjay Arora wrote:

>Well I want to use nested select statements ,is it possible.

In PG 7.0 you can use subselects in the "where" clause.

>Is there any counterpart for 'Sysdate from dual' as in Oracle

You don't need "dual", just "select now()" will work.

If you're porting Oracle code, you can make life a lot easier by
defining some stuff:

create function sysdate() returns datetime as '
begin
return ''now'';
end;' language 'plpgsql';

create view dual as select sysdate();

Then "select sysdate from dual", "select (any expression) from dual", etc all do what
you'd expect.

- Don Baccus, Portland OR <dhogaza(at)pacifier(dot)com>
Nature photos, on-line guides, Pacific Northwest
Rare Bird Alert Service and other goodies at
http://donb.photo.net.

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-11-29 15:55:36 Re: F_SETLK is looking worse and worse...
Previous Message Sanjay Arora 2000-11-29 15:01:07 How to use nested select statements