Re: about subselect

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Louise Catherine <r1c4n(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: about subselect
Date: 2005-08-12 04:03:26
Message-ID: 25508.1123819406@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Louise Catherine <r1c4n(at)yahoo(dot)com> writes:
> I make a subquery test at postgresql
> 7.3.3 and postgresql 8.0.3.
> I found that postgresql 8.0.3 can't do this,
> while at postgresql 7.0.3 it works quite well :

7.3 says this:
NOTICE: Adding missing FROM-clause entry in subquery for table "temp_hasil2"

which means that the query is invalid according to the SQL spec. Later
versions are just being tougher about enforcing the spec. If you are
happy with 7.3's interpretation of what the query means, try adding

> Update Temp_hasil2 Set KdPT = A.PTCD,
> KdLjr = A.LKRJACD
> From (Select A38.NIK,A01.ptcd,A38.Lkrjacd
> From AM382 A38
> inner join
> ap012 A01 on A38.nojob = A01.nojob
> Where A38.tglavd =
> (select max(B38.tglavd) from am382 B38, Temp_hasil2
^^^^^^^^^^^^^
> where A38.nik = B38.nik
> and B38.tglavd <= Temp_hasil2.Tanggal)
> And A01.tglavd =
> (select max(B01.tglavd) from ap012 B01
> where A01.nojob = B01.nojob
> and B01.tglavd <= A38.tglavd)
> )A
> Where Temp_hasil2.NIK = A.NIK;

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Louise Catherine 2005-08-12 04:17:18 Re: about subselect
Previous Message Louise Catherine 2005-08-12 03:38:30 about subselect