Re: [SQL] yet another simple SQL question

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-sql(at)postgresql(dot)org, pgsql-novice(at)postgresql(dot)org
Subject: Re: [SQL] yet another simple SQL question
Date: 2007-06-25 18:07:17
Message-ID: 20070625180717.GA19814@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice pgsql-sql

am Mon, dem 25.06.2007, um 12:44:25 -0500 mailte Joshua folgendes:
> 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

Yes, of course:

test=# select split_part('My Name', ' ', 1);
split_part
------------
My
(1 row)

And now, i think, you should read our fine manual:
http://www.postgresql.org/docs/current/interactive/

Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Magnus Hagander 2007-06-25 18:20:29 Re: Automatic install on windows
Previous Message Francisco Reyes 2007-06-25 18:04:33 Re: Move a database from one server to other

Browse pgsql-novice by date

  From Date Subject
Next Message Ragnar 2007-06-25 18:33:14 Re: yet another simple SQL question
Previous Message manchicken 2007-06-25 17:59:34 Re: yet another simple SQL question

Browse pgsql-sql by date

  From Date Subject
Next Message Ragnar 2007-06-25 18:33:14 Re: yet another simple SQL question
Previous Message manchicken 2007-06-25 17:59:34 Re: yet another simple SQL question