| From: | Roy Walter <walt(at)brookhouse(dot)co(dot)uk> |
|---|---|
| To: | Sam Mason <sam(at)samason(dot)me(dot)uk> |
| Cc: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: xpath() subquery for empty array |
| Date: | 2009-07-12 21:36:15 |
| Message-ID: | 4A5A574F.3030508@brookhouse.co.uk |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Sam Mason wrote:
> On Sun, Jul 12, 2009 at 09:49:15PM +0100, Roy Walter wrote:
>
>> Where exactly does that fit in terms of my original query, i.e.:
>>
>> SELECT x
>> FROM (SELECT xpath('//entry[contains(p, ''searchtext'')]/@*', docxml)
>> AS x FROM docs) AS y WHERE x <> [test for empty array?????????]
>>
>
> Something like the following should do the right thing:
>
> SELECT x FROM (
> SELECT xpath('//entry[contains(p, ''searchtext'')]/@*', docxml) AS x
> FROM docs) AS y
> WHERE array_upper(x, 1) > 0;
>
Thank you, works just fine. I thought it was more complicated than that :-)
-- Roy
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Dennis Gearon | 2009-07-12 22:01:18 | Re: indexes on float8 vs integer |
| Previous Message | Sam Mason | 2009-07-12 21:17:55 | Re: xpath() subquery for empty array |