Re: How to limit dropdown list to options based on 'in use' rows from lookup table, for webpage using php and postgresql

From: Raymond O'Donnell <rod(at)iol(dot)ie>
To: Killian Driscoll <killiandriscoll(at)gmail(dot)com>, PostgreSQLPHP <pgsql-php(at)postgresql(dot)org>
Subject: Re: How to limit dropdown list to options based on 'in use' rows from lookup table, for webpage using php and postgresql
Date: 2015-12-29 17:17:53
Message-ID: 5682C041.40706@iol.ie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On 29/12/2015 17:08, Killian Driscoll wrote:
> While I fix getting kicked off the list I'll reply directly to you if
> that's OK!

No hassle.

<snip>

> Not sure - the php generator I am using states that to create a filter
> condition:
> "Filter condition allows you to reduce the list of values represented in
> the lookup editor with a specified criterion. This condition corresponds
> to the WHERE clause applied to the data source (you must not add the
> WHERE keyword to beginning of the condition)."
>
> So, I need a WHERE condition based on my tables.

How about moving the join into a subquery using EXISTS? - like this:

[where] exists (
select 1
from country_table ct inner join lookup_table lt
on (ct.country_type_id = lt.country_type_id)
)

Ray.

--
Raymond O'Donnell :: Galway :: Ireland
rod(at)iol(dot)ie

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Raymond O'Donnell 2015-12-29 18:17:55 Re: How to limit dropdown list to options based on 'in use' rows from lookup table, for webpage using php and postgresql
Previous Message Raymond O'Donnell 2015-12-29 16:59:31 Re: How to limit dropdown list to options based on 'in use' rows from lookup table, for webpage using php and postgresql