Click here to Skip to main content
15,881,763 members
Articles / Programming Languages / SQL
Tip/Trick

Counting the number of occurrences of one string inside another in SQL

Rate me:
Please Sign up or sign in to vote.
4.67/5 (7 votes)
25 Jun 2010CPOL 37.2K   13   6
I had a need to count the number of times a certain string appeared within a column in a SQL table. I came up with this simple function that may be of use to others
I had a need to count the number of times a certain string appeared within a column in a SQL table. I came up with this simple function that may be of use to others.

SQL
-- Setup: Create a blank function if none exists. This allows us to 
-- rerun this single script each time we modify this function

IF NOT EXISTS (SELECT * FROM sys.objects
 WHERE object_id = OBJECT_ID(N'dbo.com_CountString')
 AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))
EXEC dbo.sp_executesql @statement = N'create function dbo.com_CountString() RETURNS INT AS BEGIN RETURN '''' END'
go

-- Create the actual function

/*====================================================================================
Counts the number of times @SearchString appears in @Input.
====================================================================================*/
ALTER FUNCTION dbo.com_CountString(@Input nVarChar(max), @SearchString nVarChar(1000))
RETURNS INT
BEGIN
    DECLARE @Count INT, @Index INT, @InputLength INT, @SearchLength INT
    DECLARE @SampleString INT

    if @Input is null or @SearchString is null
        return 0

    SET @Count = 0
    SET @Index = 1
    SET @InputLength  = LEN(@Input)
    SET @SearchLength = LEN(@SearchString)

    if @InputLength = 0 or @SearchLength = 0 or @SearchLength > @InputLength
        return 0

    WHILE @Index <= @InputLength - @SearchLength + 1
    BEGIN
        IF SUBSTRING(@Input, @Index, @SearchLength) = @SearchString
        BEGIN
            SET @Count = @Count + 1
            SET @Index = @Index + @SearchLength
        END
        ELSE
            SET @Index = @Index + 1
    END

    RETURN @Count
END
GO


The function can be called:
SQL
SELECT dbo.com_CountString('This is a string', 'is')

SELECT dbo.com_CountString(MyTable.MyColumn, 'search string')
FROM  MyTable
WHERE MyTable.MyKey = @Key

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder CodeProject
Canada Canada
Chris Maunder is the co-founder of CodeProject and ContentLab.com, and has been a prominent figure in the software development community for nearly 30 years. Hailing from Australia, Chris has a background in Mathematics, Astrophysics, Environmental Engineering and Defence Research. His programming endeavours span everything from FORTRAN on Super Computers, C++/MFC on Windows, through to to high-load .NET web applications and Python AI applications on everything from macOS to a Raspberry Pi. Chris is a full-stack developer who is as comfortable with SQL as he is with CSS.

In the late 1990s, he and his business partner David Cunningham recognized the need for a platform that would facilitate knowledge-sharing among developers, leading to the establishment of CodeProject.com in 1999. Chris's expertise in programming and his passion for fostering a collaborative environment have played a pivotal role in the success of CodeProject.com. Over the years, the website has grown into a vibrant community where programmers worldwide can connect, exchange ideas, and find solutions to coding challenges. Chris is a prolific contributor to the developer community through his articles and tutorials, and his latest passion project, CodeProject.AI.

In addition to his work with CodeProject.com, Chris co-founded ContentLab and DeveloperMedia, two projects focussed on helping companies make their Software Projects a success. Chris's roles included Product Development, Content Creation, Client Satisfaction and Systems Automation.

Comments and Discussions

 
Questionn Pin
Member 799655620-Feb-14 13:07
Member 799655620-Feb-14 13:07 
GeneralOne reason possibly for creating if not found as apposed to ... Pin
George Martin NZ22-Aug-11 12:33
professionalGeorge Martin NZ22-Aug-11 12:33 
GeneralI also just steer clear of sp_executesql, unless its absolut... Pin
Andrew Rissing30-Jun-10 7:53
Andrew Rissing30-Jun-10 7:53 
GeneralOh, I wasn't saying you could get around the exists check, y... Pin
Andrew Rissing30-Jun-10 7:47
Andrew Rissing30-Jun-10 7:47 
GeneralWe'd still have to check for the existence before dropping i... Pin
Chris Maunder30-Jun-10 6:45
cofounderChris Maunder30-Jun-10 6:45 
GeneralOut of curiousity, why not just drop the function at the sta... Pin
Andrew Rissing30-Jun-10 4:06
Andrew Rissing30-Jun-10 4:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.