Re: [SQL] Case insensitive searchs

From: Andy Lewis <alewis(at)themecca(dot)net>
To: Gregory W Burnham <gburnham(at)sfu(dot)ca>
Cc: pgsql-sql(at)hub(dot)org
Subject: Re: [SQL] Case insensitive searchs
Date: 1999-04-18 18:31:20
Message-ID: Pine.LNX.4.05.9904181328250.21774-100000@tmg.themecca.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The problem is that I don't know all of the city names.

I was trying to do a:

select distinct lower(city) from mytable

This yeild a combo of all of one each of all cities that have different
case and returns them in lowercase.

Thanks

Andy

On Sun, 18 Apr 1999, Gregory W Burnham wrote:

> I'm sure the syntax here is wrong, and I'm sure I'll be
> corrected : )
>
> But can't you do something like this:
>
> select distict from the_table where upper(city_name) = upper("san antonio");
>
> Gregory W Burnham
> Software Engineer
> Excite Labs
> Faculty Of Education
> Simon Fraser University
> Vancouver, BC, V5A 1S6
> 604 291 3615 (ph)
> 604 291 5679 (fx)
>
> ----- Original Message -----
> From: Andy Lewis <alewis(at)themecca(dot)net>
> To: <pgsql-sql(at)hub(dot)org>
> Sent: Sunday, April 18, 1999 11:14 AM
> Subject: [SQL] Case insensitive searchs
>
>
> > I have a table that has city names in it. Some of the cities have a number
> > of different cases. For instance I may have:
> >
> > San Antonio
> > san antonio
> > San antonio
> > SAN ANTONIO
> >
> > My question is how can I do a distinct search for all cities and only get
> > one of each city?
> >
> > Thanks in advance.
> >
> >
> >
> >
> >
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Ross J. Reedstrom 1999-04-18 18:44:39 Re: [SQL] Case insensitive searchs
Previous Message Gregory W Burnham 1999-04-18 18:16:13 Re: [SQL] Case insensitive searchs