Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to select all of the name before and?

Status
Not open for further replies.

DarkWorlds

Technical User
Jul 20, 2005
64
0
0
US
Ok I had a question on something. I have a field with names in it, and sometimes it has two.

AKA

Bob and Jill

Well I just want to select the name before the "and". How would I go about doing this? Also the "and" could also be "&".

I look forward to your reply
 
Code:
SELECT CASE WHEN CHARINDEX('and', YourField) > 0
            THEN LEFT(YourField, CHARINDEX('and', YourField)-1)
            WHEN CHARINDEX('&', YourField) > 0
            THEN LEFT(YourField, CHARINDEX('&', YourField)-1)
            ELSE YourField END AS YourField


Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
MVP VFP
 
That worked well for me, but how would I also do it from the right, found something new I have to eleminate
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top