Re: binary varchar fields seems non-binary

2001-12-26 Thread Doug Thompson
It works the way you want with this data when your query is written: SELECT nev FROM hosoktest WHERE nev = ('pokember' OR 'Pokember'); Regards, Doug On Thu, 27 Dec 2001 01:33:57 +0100, Barnabas BONA wrote: >If I execute the following select: > SELECT nev FROM hosoktest WHER

Re: binary varchar fields seems non-binary

2001-12-26 Thread Bogdan Stancescu
Just my two cents: have you tried the following? SELECT nev FROM hosoktest WHERE (nev = 'Pokember') OR (nev = \ 'pokember'); Bogdan Barnabas BONA wrote: > If I execute the following select: >SELECT nev FROM hosoktest WHERE nev = 'pokember' OR nev = \ >