Quantcast
Channel: Answers for "How To Query A Column For 2 Or More Repeating Characters?"
Viewing all articles
Browse latest Browse all 10

Answer by Nathan Skerl

$
0
0

You can also play with replace to "count" the number of characters like so:


declare @s varchar(15)            
set @s = 'abc#def#ghi'            
if (len(@s) - len(replace(@s, '#', ''))) > 1            
begin            
    print 'more than one found'            
end else            
begin            
    print 'less than one found'            
end            
/* against table            
select  *            
from    dbo.YourTable            
where   len(YourColumn) - len(replace(YourColumn, '#', ''))) > 1            
*/

Viewing all articles
Browse latest Browse all 10

Trending Articles