Re: Why doesn't this work - Mailing list pgsql-sql

From Rob Sargent
Subject Re: Why doesn't this work
Date
Msg-id 50F56FF7.9000701@gmail.com
Whole thread Raw
In response to Why doesn't this work  (Barbara Woolums <barb.woolums@ymail.com>)
List pgsql-sql
On 01/15/2013 04:50 AM, Barbara Woolums wrote:
> I am running a query like so
>
> SELECT id FROM image WHERE image='demo-harvey wallbanger.jpg'
>
> It returns nothing
>
> My table looks like this
>
> "demo-820.jpg";1
> "demo-lemon-mousse-1.jpg";2
> "demo-pumpkinchaibars.jpg";3
> "demo-Lolly-Shop.jpg";4
> "demo-scan0001.jpg";5
> "demo-cherry-chocolate-mousse-pie.jpg";6
> "demo-harvey wallbanger.jpg
> ";7
>
> Cheers
> Barbara

Try select id from image where image.image ~'demo-harvey wallbanger';

If you example data is correct, I think you have a line-feed char after 
'.jpg'





pgsql-sql by date:

Previous
From: Leif Biberg Kristensen
Date:
Subject: Re: Why doesn't this work
Next
From: kgeographer
Date:
Subject: Re: returning values from dynamic SQL to a variable