Re: yet another simple SQL question

From: Erik Jones <erik(at)myemma(dot)com>
To: Joshua <joshua(at)joshuaneil(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org, pgsql-novice(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org
Subject: Re: yet another simple SQL question
Date: 2007-06-25 19:03:58
Message-ID: 37E566AC-D304-4D52-920B-7FA61D7777FD@myemma.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice pgsql-sql

On Jun 25, 2007, at 12:44 PM, Joshua wrote:

> Ok,
>
> You guys must be getting sick of these newbie questions, but I
> can't resist since I am learning a lot from these email lists and
> getting results quick! Thanks to everyone for their contributions.
>
> Here is my questions....
>
> I have a column that looks like this
>
> firstname
> -----------------
> John B
> Mark A
> Jennifer D
>
> Basically I have the first name followed by a middle initial. Is
> there a quick command I can run to strip the middle initial?
> Basically, I just need to delete the middle initial so the column
> would then look like the following:
>
> firstname
> ---------------
> John
> Mark
> Jennifer
>
> Thanks again for all of your help today. Everything you guys have
> been sending has produced successful results.
>

Try something along the lines of:

SELECT substring(firstname from '^(\w*)\W') from table_name;

Erik Jones

Software Developer | Emma®
erik(at)myemma(dot)com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Michael Glaesemann 2007-06-25 19:07:03 Re: Move a database from one server to other
Previous Message Erik Jones 2007-06-25 18:42:48 Standby servers and incrementally updated backups

Browse pgsql-novice by date

  From Date Subject
Next Message Fernando Hevia 2007-06-25 19:20:37 NO DATA FOUND Exception
Previous Message Ragnar 2007-06-25 18:33:14 Re: yet another simple SQL question

Browse pgsql-sql by date

  From Date Subject
Next Message Fernando Hevia 2007-06-25 19:20:37 NO DATA FOUND Exception
Previous Message Ragnar 2007-06-25 18:33:14 Re: yet another simple SQL question