Count the number of occurrences of a string in a VARCHAR field

SELECT 
    title,
    description,    
    ROUND (   
        (
            LENGTH(description)
            - LENGTH( REPLACE ( description, "value", "") ) 
        ) / LENGTH("value")        
    ) AS count    
FROM <table> 

 

********************************** ************************* ************************ **************** ****************** *********** ************** ************* ************ *************