Re: converting Informix outer to Postgres

From: "George Pavlov" <gpavlov(at)mynewplace(dot)com>
To: <gurkan(at)resolution(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: converting Informix outer to Postgres
Date: 2006-11-07 00:56:31
Message-ID: 8C5B026B51B6854CBE88121DBF097A86592AB1@ehost010-33.exch010.intermedia.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Why don't you start by presenting the query in a more readable form
(hint use SQL-standard JOIN syntax for all of your joins) and maybe
narrowing just to a couple of tables to isolate the problem. As it is,
it is hard to understand. In the process of rewriting you will be forced
to think about each join and maybe clarify the query for yourself. So,
for example, maybe this is the query you want (just an attempt to
quickly rewrite the Informix using standard JOIN syntax--I have a hunch
that you want only one outer join):

select count(u.id)
from user u
inner join invention i
on u.id = i.user_id
inner join inv_contracts ic
on ic.inv_id = i.id
inner join milestonedef mdef1
on ic.contract_id = mdef1.contract_id
inner join milestonedef mdef2
on ic.contract_id = mdef2.contract_id
inner join inv_milestones im1
on im1.inv_id = i.id
and mdef1.id = im1.milestone_id
left join inv_milestones im2
on im2.inv_id = i.id
and mdef2.id = im2.milestone_id
where im1.datesent BETWEEN '2005-05-05' AND '2005-05-10'
and im1.datereceived IS NULL
;

> -----Original Message-----
> From: pgsql-sql-owner(at)postgresql(dot)org
> [mailto:pgsql-sql-owner(at)postgresql(dot)org] On Behalf Of
> gurkan(at)resolution(dot)com
> Sent: Monday, November 06, 2006 4:11 PM
> To: pgsql-sql(at)postgresql(dot)org
> Subject: [SQL] converting Informix outer to Postgres
>
> Hi all,
> I have been working on this Informix SQL query which has an
> outer join.
> I have attached Informix query and my "supposedly" solution
> to this query
> but I cannot get the same count. I appreciate for any help.
> Thanks.
>
> --Informix query
> select count(u.id)
> from user u, invention i, inv_contracts ic, inv_milestones
> im1, milestonedef mdef1,
> OUTER inv_milestones im2,
> milestonedef mdef2
> where u.id = i.user_id and
> ic.inv_id = i.id and
> ic.contract_id = mdef1.contract_id and
> im1.inv_id = i.id and
> mdef1.id = im1.milestone_id and
> im1.datesent BETWEEN '2005-05-05' AND '2005-05-10' and
> ic.contract_id = mdef2.contract_id and
> im2.inv_id = i.id and
> mdef2.id = im2.milestone_id and
> im1.datereceived IS NULL
>
> --Postges query
> select count(u.id)
> from dbuser u, inv_contracts ic, inv_milestones im1,
> milestonedef mdef1,
> --OUTER inv_milestones im2,
> milestonedef mdef2 LEFT OUTER JOIN inv_milestones im2 ON
> mdef2.id = im2.milestone_id
> LEFT OUTER JOIN invention i ON im2.inv_id = i.id
> where u.id = i.user_id and
> ic.inv_id = i.id and
> ic.contract_id = mdef1.contract_id and
> im1.inv_id = i.id and
> mdef1.id = im1.milestone_id and
> im1.datesent BETWEEN '2005-05-05' AND '2005-05-10' and
> ic.contract_id = mdef2.contract_id and
> --im2.inv_id = i.id and
> --mdef2.id = im2.milestone_id and
> im1.datereceived IS NULL
>
> -------------------------------------------------
> This mail sent through IMP: www.resolution.com
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faq
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Broersma Jr 2006-11-07 00:58:39 Re: converting Informix outer to Postgres
Previous Message gurkan 2006-11-07 00:10:31 converting Informix outer to Postgres