vote up 3 vote down star

How can you find the number of occurrences of a particular character in a string using sql?

Example: I want to find the number of times the letter ā€˜d’ appears in this string.

declare @string varchar(100)
select @string = 'sfdasadhfasjfdlsajflsadsadsdadsa'
flag
Which database? MySQL perhaps? – Mark Brady Nov 13 '08 at 16:19
Please give this a more descriptive title, you'll see better results. – Jeff Nov 13 '08 at 16:19
The answer is probably going to be database-specific, so please tell everyone what database you are using. – matt b Nov 13 '08 at 16:24

2 Answers

vote up 11 vote down check

Here you go:

declare @string varchar(100)
select @string = 'sfdasadhfasjfdlsajflsadsadsdadsa'
SELECT LEN(@string) - LEN(REPLACE(@string, 'd', '')) AS D_Count
link|flag
Cute, I was thinking of iterating with charindex, I like this much better. – vfilby Nov 13 '08 at 16:22
I agree with vfilby and can confirm this code works in SQL Server 2005 and 2008. – xsl Nov 13 '08 at 16:24
I agree too...thx a lot for your help..it did work...thx once again.. – doekman Nov 13 '08 at 16:25
I am a MySql user. and definately not a guru. What would be the equiv of D_Count in MySQL? – J.J. Nov 13 '08 at 16:38
D_Count is just an alias for the column. i don't know how you set that in MySql – Mladen Prajdic Nov 13 '08 at 16:42
vote up 0 vote down

Thanks for the solution.

link|flag

Your Answer

Get an OpenID
or

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