Possible Duplicate:
sql to pick apart a string of a persons name and output the initials

In MS-SQL Server, there is a way to get the first letter of each word in a string? For example:

Name: Michael Joseph Jackson

Query: SELECT name, [function] as initial FROM Customers

Result: MJJ

link|improve this question
4  
I'm pretty sure that there is no such function, but you could easily roll your own. – Irfy Feb 15 at 20:52
feedback

closed as exact duplicate by Martin Smith, bluefeet, casperOne Feb 16 at 23:01

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

up vote 1 down vote accepted

This function will shield your results against multiple sequential spaces in the source string:

CREATE FUNCTION dbo.fnFirsties ( @str NVARCHAR(4000) )
RETURNS NVARCHAR(2000)
AS
BEGIN
    DECLARE @retval NVARCHAR(2000);

    SET @str=RTRIM(LTRIM(@str));
    SET @retval=LEFT(@str,1);

    WHILE CHARINDEX(' ',@str,1)>0 BEGIN
        SET @str=LTRIM(RIGHT(@str,LEN(@str)-CHARINDEX(' ',@str,1)));
        SET @retval+=LEFT(@str,1);
    END

    RETURN @retval;
END
GO

SELECT dbo.fnFirsties('Michael Joseph Jackson');
SELECT dbo.fnFirsties('  Michael   Joseph Jackson  '); -- multiple space protection :)

Results:

MJJ
MJJ
link|improve this answer
feedback

You'll want to add some checks and error handling before you update tblStudents or something, but this should get you started.

CREATE FUNCTION initials ( @s AS nvarchar(4000))
RETURNS nvarchar(100)
AS
BEGIN
    DECLARE @i nvarchar(100) = LEFT(@s, 1); -- first char in string
    DECLARE @p int = CHARINDEX(' ', @s); -- location of first space
    WHILE (@p > 0) -- while a space has been found
    BEGIN
        SET @i = @i + SUBSTRING(@s, @p + 1, 1) -- add char after space
        SET @p = CHARINDEX(' ', @s, @p + 1); -- find next space
    END 
    RETURN @i
END
GO

SELECT dbo.initials('Michael Joseph Jackson');
link|improve this answer
feedback

Assuming we're doing this in MSSQL2008R2 though nothing involved should really matter here. All we do is have some fun with string manipulation. You could put this into a funciton or proc or just run it in query analyzer directly.

DECLARE @str varchar(250) = 'Michael Joseph Jackson' 
DECLARE @initials varchar(250) = substring(@str,1,1)

WHILE(charindex(' ',@str)!=0)
BEGIN
    DECLARE @currentSpace int = charindex(' ',@str)
    SET @initials += substring(@str,@currentSpace+1,1)
    SET @str = substring(@str,@currentSpace+1,len(@str))
END

SELECT @initials

If you're not doing this for some trivial purpose you'll likely want to clean up the data before attempting to process it. Names are often prefixed by titles, data entry fields are susceptible to user error, etc.

link|improve this answer
feedback

Probably you would have to use UDF: User Defined Function

link|improve this answer
feedback

You first need a table-valued function that splits a varchar and returns a table with a single-column called 'S'.

CREATE FUNCTION dbo.fn_Split2 (@sep nvarchar(10), @s nvarchar(4000))  
RETURNS table  
AS  
RETURN (  
    WITH Pieces(pn, start, stop) AS (  
      SELECT 1, 1, CHARINDEX(@sep, @s)  
      UNION ALL  
      SELECT pn + 1, stop + (datalength(@sep)/2), CHARINDEX(@sep, @s, stop + (datalength(@sep)/2))  
      FROM Pieces  
      WHERE stop > 0  
    )  
    SELECT pn,  
      SUBSTRING(@s, start, CASE WHEN stop > 0 THEN stop-start ELSE 4000 END) AS s  
    FROM Pieces  
  )  

Getting the initials is easy now:

DECLARE @Initials VARCHAR(8000) 
SELECT @Initials = COALESCE(@Initials, '') + SUBSTRING(s, 1, 1) FROM dbo.fn_Split2(' ', 'Michael Joseph Jackson')
SELECT @Initials

That returns 'MJJ', as required.

link|improve this answer
feedback

If you create a user-defined function, you can write it in a number of different languages (including SQL, C, and platform-dependant ones - C# in this case). Some of the existing answers already cover this.

If you're looking for an in-query-only, SQL version, you need a recursive CTE and some trickery:

WITH Initials (name, initials, start) as (
         SELECT name, SUBSTRING(name, 0, 1), CHARINDEX(' ', name, 1)
         FROM Customers  
         WHERE id = :inputParm -- perform as much restriction here as possible
         UNION ALL
         SELECT name, initials + SUBSTRING(name, start + 1, 1), 
                      CHARINDEX(' ', name, start + 1
         FROM Initials
         WHERE start > 0)
SELECT name, initials
FROM Initials
WHERE start = 0

This assumes that the first name begins at the start of the string, and that names are seperated by only a single space.

Please note that I don't have an instance of SQL Server to test this against, and am away from any RDBMS at the moment. Also, please note that this will produce odd results for some 'name' strings (like if somebody has a 'Jr.' in the name). Full validation may have to be performed application side...

link|improve this answer
feedback

SUBSTRING( string, startpos, endpos ) AS 'Initial'

link|improve this answer
1  
He means of each word in a whitespace separated string, apparently. – Irfy Feb 15 at 20:51
And how are you planning on using that to get subsequent first initials? If you look at his example, there are multiple initials returned. And how are you planning on determining where the next word starts? – X-Zero Feb 15 at 20:52
Misread, my mistake – Kogitsune Feb 15 at 20:52
feedback

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