Re: Query Formulation Question

From: Sean Davis <sdavis2(at)mail(dot)nih(dot)gov>
To: operationsengineer1(at)yahoo(dot)com
Cc: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Query Formulation Question
Date: 2006-05-13 00:30:01
Message-ID: 44652889.7080500@mail.nih.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

operationsengineer1(at)yahoo(dot)com wrote:
> consider the following simplified queries (php using
> heredoc):
>
> $sql_1 = <<<_EOSQL
>
> select count(inspect)
> from t_inspect, t_product, t_test_area
> where t_product.product_num = 1
> and t_test_area.id = 5
>
> _EOSQL
>
> $sql_2 = <<<_EOSQL
>
> select count(inspect)
> from t_inspect, t_product, t_test_area
> where t_product.product_num = 1
>
> _EOSQL
>
> what is the best way to handle both of these cases in
> one statement?

You are using a programming language--why not construct the query on the
fly? Why the requirement to use the heredoc for the entire query string?

Sean

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message operationsengineer1 2006-05-13 01:12:57 Re: Query Formulation Question
Previous Message operationsengineer1 2006-05-12 22:30:21 Query Formulation Question