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...