I'm trying without any luck to come up with a method to pass

Bruno Miguel Alexandre into B. Miguel Alexandre

and

Bruno Alexandre into B. Alexandre

just in SQL so I can make this part of a big query in a Store Procedure

can anyone provide me with any help? Any function that you guys might already have?

Much appreciated.

link|improve this question

2  
Always the string "bruno"? – gbn Dec 2 '10 at 21:13
2  
@gbn :) that's a good one – Raj More Dec 2 '10 at 21:14
feedback

2 Answers

up vote 5 down vote accepted

Take 1st character + everything from the space. The 8000 is to avoid LEN calls otherwise

LEFT(MyValue, 1) + '.' + SUBSTRING(MyValue, CHARINDEX(' ', MyValue), 8000)
link|improve this answer
+1, works efficiently with any string, not just "bruno" ;-) – KM. Dec 2 '10 at 21:18
so simple :) many thxs! – balexandre Dec 2 '10 at 21:42
feedback

Try a substring with a CharIndex to find the space

with MyTable as
(
            SELECT 'Bruno Miguel Alexandre' as FullName
    UNION   SELECT 'Miguel Bruno Alexandre'
    UNION   SELECT 'Bruno Alexandre'
    UNION   SELECT 'Bruno Miguel'
)
SELECT 
    SubString (FullName, 1, 1) 
    + '.' 
    + SubString (FullName, CHARINDEX (' ', FullName, 1), 8000)
FROM MyTable

The output is

------------------------
B. Alexandre
B. Miguel
B. Miguel Alexandre
M. Bruno Alexandre

(4 row(s) affected)
link|improve this answer
y'know, seeing LEN in SUBSTRING irritates me... ;-) – gbn Dec 2 '10 at 21:20
@gbn true.. i corrected that – Raj More Dec 2 '10 at 21:20
your answer is also very good, +1 – balexandre Dec 2 '10 at 21:43
feedback

Your Answer

 
or
required, but never shown

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