vote up 2 vote down star
1

If I have the following nvarchar variable - BTA200, how can I extract just the BTA from it?

Also, if I have varying lengths such as BTA50, BTA030, how can I extract just the numeric part?

flag

67% accept rate

3 Answers

vote up 8 vote down check

I would recommend a combination of PatIndex and Left. Carefully constructed, you can write a query that always works, no matter what your data looks like.

Ex:

Declare @Temp Table(Data VarChar(20))

Insert Into @Temp Values('BTA200')
Insert Into @Temp Values('BTA50')
Insert Into @Temp Values('BTA030')
Insert Into @Temp Values('BTA')
Insert Into @Temp Values('123')
Insert Into @Temp Values('X999')

Select Data, Left(Data, PatIndex('%[0-9]%', Data + '1') - 1)
From   @Temp

PatIndex will look for the first character that falls in the range of 0-9, and return it's character position, which you can use with the LEFT function to extract the correct data. Note that PatIndex is actually using Data + '1'. This protects us from data where there are no numbers found. If there are no numbers, PatIndex would return 0. In this case, the LEFT function would error because we are using Left(Data, PatIndex - 1). When PatIndex returns 0, we would end up with Left(Data, -1) which returns an error.

There are still ways this can fail. For a full explanation, I encourage you to read:

Extracting numbers with SQL Server

That article shows how to get numbers out of a string. In your case, you want to get alpha characters instead. However, the process is similar enough that you can probably learn something useful out of it.

link|flag
How would I extract the numeric part only? – Xaisoft Dec 17 '08 at 16:49
Look at the link I provided. There is a user defined function that you can use to extract just the number part. – G Mastros Dec 17 '08 at 16:50
Is the 8000 you used in the link provided just an arbitrary number? – Xaisoft Dec 17 '08 at 16:55
I used 8000 because that is the largest length that you can use for a varchar column. I decided to use varchar(8000) instead of varchar(max) so that the function could be used with SQL2000. If you are using SQL2005 (or above), you can change the 8000 to max. – G Mastros Dec 17 '08 at 16:57
I tried this to extract the number, but it returned blanks: LEFT(SubString(GSA,PatIndex('%[0-9]%',GSA),8000),PatIndex('% [0-9]%',SubString(GSA,PatIndex('%[0-9]%',GSA),8000) + '1') - 1) – Xaisoft Dec 17 '08 at 17:07
show 8 more comments
vote up 1 vote down

substring(field, 1,3) will work on your examples.

select substring(field, 1,3) from table

Also, if the alphabetic part is of variable length, you can do this to extract the alphabetic part:

select substring(field, 1, PATINDEX('%[1234567890]%', field) -1) 
from table
where PATINDEX('%[1234567890]%', field) > 0
link|flag
vote up 1 vote down

LEFT ('BTA200', 3) will work for the examples you have given, as in :

SELECT LEFT(MyField, 3)
FROM MyTable

To extract the numeric part, you can use this code

SELECT RIGHT(MyField, LEN(MyField) - 3)
FROM MyTable
WHERE MyField LIKE 'BTA%' 
--Only have this test if your data does not always start with BTA.
link|flag
what if it varies in length, such as BTA10, or BTA1? – Xaisoft Dec 17 '08 at 16:32
The code I've given will extract the alphabetic part, as requested. If this is not what you require, please update your question :-) – RB Dec 17 '08 at 16:33
ok, sorry, I see it now. What if I wanted to extract the numeric part? – Xaisoft Dec 17 '08 at 16:34
I got the error: Invalid length parameter passed to the RIGHT function. – Xaisoft Dec 17 '08 at 16:38
Yes, so how can I check for that? – Xaisoft Dec 17 '08 at 16:41
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.