Re: Subqueries

From: "Oliveiros Cristina" <oliveiros(dot)cristina(at)marktest(dot)pt>
To: <ptufenkji(at)usj(dot)edu(dot)lb>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Subqueries
Date: 2008-10-30 12:49:49
Message-ID: 029501c93a8d$ff15d370$ec5a3d0a@marktestcr.marktest.pt
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

alias v not visible in sub-query?
----- Original Message -----
From: Pascal Tufenkji
To: pgsql-sql(at)postgresql(dot)org
Sent: Thursday, October 30, 2008 12:17 PM
Subject: [SQL] Subqueries

Hello,

I don't understand the following error.

Can anyone help me plz

Thx

Pascal

select *

from sip_vacations_v v

left join

(

select pe.emp_id,mg.mat_id,mg.groupe,count(p.id) * 1.5 as nb_heures

from mat_grp_v mg

inner join planification_v p on p.mat_grp_id = mg.id

inner join planification_ens_v pe on pe.planification_id = p.id

where mg.annee_univ = v.annee and mg.semestre = v.sem_civ

group by pe.emp_id,mg.mat_id,mg.groupe

) p on p.emp_id = v.emp_id

and p.mat_id = v.mat_id

and p.groupe = v.groupe

ERROR: invalid reference to FROM-clause entry for table "v"

LINE 9: where mg.annee_univ = v.annee and mg.semestre = v.sem_civ

^

HINT: There is an entry for table "v", but it cannot be referenced from this part of the query.


In response to

  • Subqueries at 2008-10-30 12:17:34 from Pascal Tufenkji

Browse pgsql-sql by date

  From Date Subject
Next Message Helio Campos Mello de Andrade 2008-10-30 12:52:57 Re: Subqueries
Previous Message Pascal Tufenkji 2008-10-30 12:17:34 Subqueries